Socket
Book a DemoInstallSign in
Socket

pull-write-file

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-write-file

pull-stream version of fs.createWriteStream

latest
Source
npmnpm
Version
0.2.4
Version published
Maintainers
1
Created
Source

pull-write-file

pull-stream version of fs.createWriteStream

currently really simple and does not yet support all fs.createWriteStream options yet.

Example

var Write = require('pull-write-stream')

pull(
  source, //must be buffers (sorry, strings not working yet!)
  Write(pathToFile, {}, function (err) {
    //callback is called once write is complete,
    //and file descriptor is closed
  })
)

Performance

For large buffers this is currently as fast as node's streams, but for lots of small buffers it's a little less. Node uses the fs binding's writev to pass many buffers to the kernel simutaniously.

TODO: benchmarks with graphs comparing node streams and pull streams.

License

MIT

FAQs

Package last updated on 28 Dec 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