Skip to content

Instantly share code, notes, and snippets.

@sgimeno
Created April 30, 2016 16:27
Show Gist options
  • Save sgimeno/f57665a9e96cc4c59d5c1a19f173c169 to your computer and use it in GitHub Desktop.
Save sgimeno/f57665a9e96cc4c59d5c1a19f173c169 to your computer and use it in GitHub Desktop.
Prompt a question with Node
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question('Enter the problem input: ', (input) => {
console.log(`Input: ${input}`);
rl.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment