Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Commit

Permalink
Bring back notes about beta release in README.md.
Browse files Browse the repository at this point in the history
  • Loading branch information
nwronski committed Oct 31, 2016
1 parent 10c508b commit 36bed2b
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,25 @@ to see it in action.
npm install sqlite-parser
```

### Install as a global module
### Beta version available

Try out the latest and greatest (currently `v1.0.0-rc2`)! Currently, the
`sqlite-parser` CLI tool and streaming parser API are only available when
installing this module with the `beta` tag.

```
npm install sqlite-parser@beta
```

### Install as a global module **(v1.0.0 beta only)**

Use the command-line interface of the parser by installing it as a global module.
The `sqlite-parser` command is then available to use to parse input SQL files and
write the results to stdout or a JSON file. Additional usage
instructions and options available through `sqlite-parser --help`.

```
npm i -g sqlite-parser
npm i -g sqlite-parser@beta
```

## Basic Usage
Expand Down Expand Up @@ -57,7 +67,7 @@ sqliteParser(query, function (err, ast) {
});
```

## Use parser on Node streams *(experimental)*
## Use parser on Node streams *(experimental)* **(v1.0.0 beta only)**

This library also includes *experimental* support as a
[stream transform](https://nodejs.org/api/stream.html) that can accept a
Expand Down

0 comments on commit 36bed2b

Please sign in to comment.