New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

asyncplify-node

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

asyncplify-node

asyncplify operators for working with streams and events

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

npm version

asyncplify-node

asyncplify operators for working with streams and events.

Installation

$ npm install asyncplify-node

Documentation

fromStream(stream)

read the content from a stream (readable, transformable or writable)

Example:

	asyncplifyNode
		.fromStream(createReadableStream())
		.subscribe();

toStream(options)

write the content of an observable to a writable stream.

options:

  • stream: Stream Object
  • encoding: String
  • objectMode: Boolean default = false

Example:

	asyncplify
		.fromArray([1, 2, 3, 4])
		.pipe(asyncplifyNode.toStream(createWriteStream('file.txt')));

License

The MIT License (MIT)

Copyright (c) 2015 Dany Laporte

Keywords

asyncplify

FAQs

Package last updated on 19 Jul 2015

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