Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goto-bus-stop/from2-buffer
Create a readable stream from a Buffer with from2
https://github.com/goto-bus-stop/from2-buffer
Last synced: 27 days ago
JSON representation
Create a readable stream from a Buffer with from2
- Host: GitHub
- URL: https://github.com/goto-bus-stop/from2-buffer
- Owner: goto-bus-stop
- License: mit
- Created: 2017-07-23T13:42:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-01T11:06:26.000Z (over 3 years ago)
- Last Synced: 2024-10-05T16:26:14.843Z (about 1 month ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/from2-buffer
- Size: 21.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# from2-buffer
Create a readable stream from a Buffer with [`from2`](https://github.com/hughsk/from2).
## Install
```bash
npm install from2-buffer
```## Usage
```js
var fromBuffer = require('from2-buffer')
var buffer = require('fs').readFileSync(__filename)fromBuffer(buffer).pipe(process.stdout)
```## API
### `fromBuffer(buffer: Buffer): Readable`
Create a readable stream that will stream appropriately sized chunks of the given Buffer.
## Related
- [from2](https://github.com/hughsk/from2) - Convenience wrapper for ReadableStream, with an API lifted from "from" and "through2"
- [from2-array](https://github.com/binocarlos/from2-array) - Create a from2 stream based on an array of source values
- [from2-string](https://github.com/yoshuawuyts/from2-string) - Create a stream from a string. Sugary wrapper around from2## License
[MIT](./LICENSE)