read-console-input
v0.2.0
Published
Simple and easy to use syncrhonous readline for Node.js that supports UTF-8 input.
Downloads
3
Maintainers
Readme
Simple and easy to use syncrhonous readline for Node.js that supports UTF-8 input.
Install
npm install read-console-input
Usage
import readline from 'read-console-input';
const name = readline('What is your name: ');
console.log('Hello ' + name);