npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

stable-stream

0.0.0

@mafintosh

npmHomeRepoSnykSocket
Downloads:2
$ npm install stable-stream
DailyWeeklyMonthlyYearly

stable-stream

WIP - nothing to see here

npm install stable-stream

Usage

const { Readable } = require('stable-stream')

const rs = new Readable({
  read (cb) {
    this.push('Cool data')
    cb(null)
  }
})

rs.on('data', data => console.log('data:', data))

API

License

MIT