node-query/node_modules/pg/node_modules/pgpass/node_modules/split
2014-10-27 15:45:42 -04:00
..
examples Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00
node_modules/through Update pg module 2014-10-27 15:45:42 -04:00
test Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00
.npmignore Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00
.travis.yml Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00
index.js Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00
LICENCE Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00
package.json Update pg module 2014-10-27 15:45:42 -04:00
readme.markdown Add some more node modules for dev/testsing 2014-10-23 10:52:21 -04:00

Split (matcher)

build status

Break up a stream and reassemble it so that each line is a chunk. matcher may be a String, or a RegExp

Example, read every line in a file ...

  fs.createReadStream(file)
    .pipe(split())
    .on('data', function (line) {
      //each chunk now is a seperate line!
    })

split takes the same arguments as string.split except it defaults to '/\r?\n/' instead of ',', and the optional limit paremeter is ignored. String#split

split takes an optional options object on it's third argument.

  split(matcher, mapper, options)

Valid options:

  • maxLength - The maximum buffer length without seeing a newline or matcher, if a single line exceeds this, the split stream will emit an error.
  split(JSON.parse, null, { maxLength: 2})

NDJ - Newline Delimited Json

split accepts a function which transforms each line.

fs.createReadStream(file)
  .pipe(split(JSON.parse))
  .on('data', function (obj) {
    //each chunk now is a a js object
  })
  .on('error', function (err) {
    //syntax errors will land here
    //note, this ends the stream.
  })

License

MIT