An open API service indexing awesome lists of open source software.

https://github.com/artegoser/easy-readline


https://github.com/artegoser/easy-readline

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# easy-readline

Easily enter data through the console.

```js
let {Readline} = require("easy-readline");

let sr = new Readline();
test();

async function test() {
console.log(await sr.input("text", "Doctor who?: "))
console.log(await sr.input("secure", "password: "))
sr.close()
}
```