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

https://github.com/threeletters/asyncconsole

Async console for console commands
https://github.com/threeletters/asyncconsole

cli nodejs npm-package

Last synced: 2 months ago
JSON representation

Async console for console commands

Awesome Lists containing this project

README

          

# AsyncConsole
Async console for console commands. Works for all devices

## Usage
> npm install asyncconsole

```js
var AsyncConsole = require('asyncconsole')
var console = new AsyncConsole(">", function(input) {
// do something with the input
})

```