1.0.1 • Published 5 years ago

getchar v1.0.1

Weekly downloads
3
License
Unlicense
Repository
github
Last release
5 years ago

getchar 💻

getchar is simple native library bringing C-style getchar() function to Node, allowing to read from standard input character by character, synchronously, without callbacks!

npm version npm license Dependency Status

NPM

Install

npm install --save getchar

Usage

const glib = require("getchar");
let c = glib.getchar(true); 
// typeof(c) === 'string'
// getchar(boolean) - default: false, if true skip newlines.

console.log(c);