Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

data_stream

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

data_stream

powerful data manipulation with node.js streams.

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

data-stream travis-ci build status

powerful data manipulation with node.js streams.

Note: Install with 'npm install data_stream because data-stream was already taken.

NPM

Usage

To start using, install it into your project, create a new data-stream, apply your transforms, then treat as a regular stream:

var data = require('../');
var stream = data()
	.sum()
	.debounce(100)
	.forEach(console.log);

setInterval(function(){ stream.write(1) }, 1);

See examples/sum.js.

API documentation

For the full API specification, please see doc/index.md.

License

Licensed under GPL-3.0.

Keywords

FAQs

Package last updated on 04 Jun 2016

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