New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

stream-splitter-transform

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-splitter-transform

A stream.Transform-based stream splitter

  • 0.0.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

stream-splitter-transform

A Transform objectMode stream to break a stream along a separator

new StreamSplitter([separator, [options]])

A new stream.Transform that splits the input stream along separator and emits each split chunk in objectMode.

separator defaults to \n

options is passed along to the Transform constructor. decodeStrings and objectMode are always set to false and true, respectively

Example: Print a script out line-by-line

var StreamSplitter = require('stream-splitter-transform');
var fs = require('fs');

var splitter = new StreamSplitter();
function readSplitter() {
    var line = splitter.read();
    if (line !== null) {
        console.log("Got line: " + line);
        line = splitter.read();
    }
}
splitter.on('readable', readSplitter);

var thisScript = fs.createReadStream(process.argv[1]);
thisScript.pipe(splitter);

readSplitter();

FAQs

Package last updated on 03 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc