Skip to content

Instantly share code, notes, and snippets.

@mathiasrw
Created March 15, 2017 03:24
Show Gist options
  • Save mathiasrw/090226f7c7cbd674291b442753c12b2f to your computer and use it in GitHub Desktop.
Save mathiasrw/090226f7c7cbd674291b442753c12b2f to your computer and use it in GitHub Desktop.
#!/usr/bin/env node
process.stdin.resume();
process.stdin.setEncoding('utf8');
process.stdin.on('data', function(data) {
// do something and write output
process.stdout.write(data);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment