1.0.1 • Published 7 years ago

split v1.0.1

Weekly downloads
5,203,923
License
MIT
Repository
github
Last release
7 years ago

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 separate line!
    })

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

split takes an optional options object on its 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})
  • trailing - By default the last buffer not delimited by a newline or matcher will be emitted. To prevent this set options.trailing to false.
  split(JSON.parse, null, { trailing: false })

keep matched splitter

As with String#split, if you split by a regular expression with a matching group, the matches will be retained in the collection.

stdin
.pipe(split(/(\r?\n)/))
... //lines + separators.

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

event-streamarchetype-librarybalena-clieasy-select-rnwalkingdeadreact-native-bluetooth2killi8n-react-native-fast-imagemeen-utilsmoonpay-apigrepexbraunny-surgebraunny-autolink-cacarotolein-nodeairscanairscan-examplereact-native-esc-pos-sahaab@borisovart/atol-kkt-module@frxf/frxfdeneme323112@deadcanaries/kadence@ntt_app/react-native-custom-notificationinvoice-ninjareact-native-covid-sdkmunia-log-viewerab-backendgrunt-protractor-runner-temp@tempicolabs/cli@tempicolabs/sdkeconomic-analyser-geocluster@jttechnic/interpreterovui-clientreact-native-printer-brothersrebresrpg-helperserbervimservervimtron-iotmux-ioreact-native-shekhar-bridge-testcogoportutils@luohuidong/spectron@oiti/documentoscopy-react-nativeconstructor-workshop@mink-opn/build-tokensquoc-testowl-indexerluminos-ui-coresfdx-hardis@everything-registry/sub-chunk-2807jawwy-sdkjawwy_gamification_releasereact-native-sphereuisphereuijawwy_libraryreact-native-credit-card-pkgondreact-native-jawwy_sampleamazon-review-stream@asymmetrik/yadda@atlas-engine/atlas_studio_sdk_testapi-gateway-localant-design-draggable-modal-4ant-design-draggable-modal-fixant-design-draggable-modal-fix-2@apardellass/react-native-audio-streamappend-logappium-ciapp-composeapostrophe-pieces-import@autocodingsystems/gateway-client@autocodingsystems/mqtt-stdin-publishapple-syslog-streamaprox.jsarvm-bestdeveloperascii-armor-stream@zhangfenglin/adbkit@zhangfenglin/stf3scale-lambda@zwodder/win-ca@_nomtek/react-native-shimmer-animation@abeai/node-loggingacme-cross-assemblerad2usbad2usb2agent-get-agent@adpt/clialexp@ali5049/react-native-buttonsab-express@adembacaj/react-native-google-payalauda-ui-migration-helperalb-log-parser@alminde/geonames-stream@amirdiafi/react-native-ios-haptics@amiruldev/wajs@toriyama/countlines@sephriot/react-native-persistable-uri@tsed/monorepo-utils@trungdq88/twitter-v2@sidghimire/react-native-mapbox-navigation
1.0.1

7 years ago

1.0.0

9 years ago

0.3.3

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

10 years ago

0.2.10

11 years ago

0.2.9

11 years ago

0.2.8

11 years ago

0.2.7

11 years ago

0.2.6

11 years ago

0.2.5

11 years ago

0.2.4

11 years ago

0.2.3

11 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

12 years ago

0.0.0

12 years ago