Skip to content

Instantly share code, notes, and snippets.

@hum-n
Created May 15, 2020 02:51
Show Gist options
  • Save hum-n/5bbb4ab90add6b75208633d66690d062 to your computer and use it in GitHub Desktop.
Save hum-n/5bbb4ab90add6b75208633d66690d062 to your computer and use it in GitHub Desktop.
const readline = require('readline');
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
rl.question('What’s the name of your project? ', (answer) => {
console.log(`Let’s start ${answer}.`);
rl.close();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment