Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created September 27, 2016 09:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ledsun/e1fc7e77dd688da9302648cef0086b82 to your computer and use it in GitHub Desktop.
Save ledsun/e1fc7e77dd688da9302648cef0086b82 to your computer and use it in GitHub Desktop.
process.stdin.on('readable', () => {
var chunk = process.stdin.read();
if (chunk !== null) {
console.log(chunk)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment