0.1.3 • Published 7 years ago
ascii-stream-generator v0.1.3
ascii-stream-generator 
The purpose of this package is, to create a readable stream, that generates ASCII characters, up to a given byte limit.
This package is currently under development and not in a stable state
Install
npm install ascii-stream-generator --save
Test
To run the unit tests, execute following command:
npm run test
Example
const stream = require('ascii-stream-generator');
stream.generate(100).pipe(process.stdout);