Buffer Nexter will allow you to manually iterate a buffer based on an arbitrary separator (defaulting to \n
). Alternatively, you can stream the buffer based on the same separator. The next()
method behaves very similarly to an ES6 generator.
import BufferNexter from 'buffer-nexter';
let lines = new Buffer('line1\nline2\line3');
let buf = new BufferNexter(lines);
console.log(buf.next()); // -> line1
console.log(buf.next()); // -> line2
console.log(buf.next()); // -> line3
console.log(buf.next()); // -> null
let buf = new BufferNexter(buffer[, options]);
A standard buffer, typically a String, containing some value to use as a separator to iterate with.
separator
- The string value to use for iteration, default\n
.index
- The buffer index within the buffer to begin iteration, default0
.encoding
- The encoding type to use to read the buffer, defaultutf8
.
let buf = new BufferNexter('1,2,3', { separator: ',' });
console.log(buf.next()); // -> 1
console.log(buf.next()); // -> 2
console.log(buf.next()); // -> 3
console.log(buf.next()); // -> null
Calling next()
will return the 'next' value from the provided buffer.
- Returns:
String
orNull
This will call next()
'n' times and return this
so you can chain next()
calls.
- Returns:
this
This will give you a look at the 'next' value that will be returned on the subsequent next()
call.
- Returns:
String
orNull
without iterating
This returns a Readable
stream for piping or whatever you want to use a stream for. The stream emits data
events for each iteration of the buffer.
- Returns:
Stream.Readable
If you just want to read a file and iterate next()
calls on \n
, then this is the easiest way to do that.
- Returns:
Promise -> BufferNexter instance
/* sample.txt
foo
bar
baz
*/
import { readFile } from 'buffer-nexter';
readFile('sample.txt')
.then((buf) => {
console.log(buf.next()); // -> foo
console.log(buf.next()); // -> bar
console.log(buf.next()); // -> baz
})
/* sample.csv
foo,bar,baz
*/
import { readFile } from 'buffer-nexter';
readFile('sample.csv', { separator: ',' })
.then((buf) => {
console.log(buf.next()); // -> foo
console.log(buf.next()); // -> bar
console.log(buf.next()); // -> baz
})
What about readFileSync()
? If there's a demand for it or if someone submits a PR, I'll add it, but I prefer to use Promise
s wherever possible.
- 0.1.0 - 20151222 - Added
static readFile()
- 0.0.1 - 20151221 - Initial release
- Mark - Thanks for the encouragement!