Skip to content

Instantly share code, notes, and snippets.

@claytonbez
Created July 30, 2018 12:16
Show Gist options
  • Save claytonbez/5fbdc00fb37c7325d2d029dfb1b70af5 to your computer and use it in GitHub Desktop.
Save claytonbez/5fbdc00fb37c7325d2d029dfb1b70af5 to your computer and use it in GitHub Desktop.
Starter for NodeJS readline
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.on('line', (input) => {
console.log(`Received: ${input}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment