Ecosyste.ms: Awesome
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: 1 day ago
JSON representation
Async console for console commands
- Host: GitHub
- URL: https://github.com/threeletters/asyncconsole
- Owner: ThreeLetters
- License: agpl-3.0
- Created: 2016-11-28T02:12:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-12T03:16:13.000Z (over 6 years ago)
- Last Synced: 2024-10-11T19:49:04.385Z (about 1 month ago)
- Topics: cli, nodejs, npm-package
- Language: JavaScript
- Size: 23.4 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
})```