BLUE
PHP 7.4.33
Path:
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/readline
Run
Logout
Edit File
Size: 1.78 KB
Close
/var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/readline/README.md
Text
Base64
## _readline_ > Read a file line by line. ## Install ## Important. In node 10 there is a core module named readline. Please use linebyline instead, it is the same module just renamed: [Npm linebyline](https://www.npmjs.com/package/linebyline) ```sh npm install linebyline ``` ## Test ```sh npm install . npm test ``` ## What's this? Simple streaming readline module for NodeJS. Reads a file and buffers new lines emitting a _line_ event for each line. ## Usage ### Simple ```js var readline = require('linebyline'), rl = readline('./somefile.txt'); rl.on('line', function(line, lineCount, byteCount) { // do something with the line of text }) .on('error', function(e) { // something went wrong }); ``` ### ASCII file decoding As the underlying `fs.createReadStream` doesn't care about the specific ASCII encoding of the file, an alternative way to decode the file is by telling the `readline` library to retain buffer and then decoding it using a converter (e.g. [`iconv-lite`](https://www.npmjs.com/package/iconv-lite)). ```js var readline = require('linebyline'), rl = readline('./file-in-win1251.txt', { retainBuffer: true //tell readline to retain buffer }); rl.on("line", function (data,linecount){ var line = iconv.decode(data, 'win1251'); // do something with the line of converted text }); ``` ##API ## readLine(readingObject[, options]) ### Params: * `readingObject` - file path or stream object * `options` can include: * `maxLineLength` - override the default 4K buffer size (lines longer than this will not be read) * `retainBuffer` - avoid converting to String prior to emitting 'line' event; will pass raw buffer with encoded data to the callback ### Return: * **EventEmitter** ## License BSD © [Craig Brookes](http://craigbrookes.com/)
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 1 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
test
DIR
-
drwxr-xr-x
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
.npmignore
28 B
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
package.json
468 B
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
readline.js
1.85 KB
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
README.md
1.78 KB
lrw-r--r--
2025-03-28 11:04:33
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).