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
- Host: GitHub
- URL: https://github.com/threeletters/asyncconsole
- Owner: ThreeLetters
- License: agpl-3.0
- Created: 2016-11-28T02:12:11.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-04-12T03:16:13.000Z (over 8 years ago)
- Last Synced: 2025-02-16T21:04:52.650Z (over 1 year 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
})
```