Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
closes #3
  • Loading branch information
ownadi committed Sep 3, 2018
1 parent 4693efc commit 5099531
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ This uses the native async/await support in Node 7.x and newer to let you `await

`npm install -g async-repl`

## Example
## Examples

```
$ async-repl
Expand All @@ -21,6 +21,13 @@ async> x
async>
```

```js
const repl = require('repl');
const stubber = require('async-repl/stubber');
const replInstance = repl.start({ prompt: 'my-fancy-repl> ' });
stubber(replInstance);
```

## Caveats

* This tool doesn't support multi-line input.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "async-repl",
"version": "0.3.0",
"version": "0.4.0",
"description": "Node repl that supports \"await\".",
"bin": {
"async-repl": "index.js"
Expand Down

0 comments on commit 5099531

Please sign in to comment.