Skip to content

Instantly share code, notes, and snippets.

@kawanet
Created August 30, 2015 06:16
Show Gist options
  • Save kawanet/8aea35dc4a578f09757d to your computer and use it in GitHub Desktop.
Save kawanet/8aea35dc4a578f09757d to your computer and use it in GitHub Desktop.
Convert a string into a Node.js stream
/**
* @see https://www.npmjs.com/package/string-to-stream
*/
var str = require('string-to-stream')
str('hi there').pipe(process.stdout) // => 'hi there'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment