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

Commit 36bed2b

Browse files
committed
Bring back notes about beta release in README.md.
1 parent 10c508b commit 36bed2b

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

README.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,25 @@ to see it in action.
2020
npm install sqlite-parser
2121
```
2222

23-
### Install as a global module
23+
### Beta version available
24+
25+
Try out the latest and greatest (currently `v1.0.0-rc2`)! Currently, the
26+
`sqlite-parser` CLI tool and streaming parser API are only available when
27+
installing this module with the `beta` tag.
28+
29+
```
30+
npm install sqlite-parser@beta
31+
```
32+
33+
### Install as a global module **(v1.0.0 beta only)**
2434

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

3040
```
31-
npm i -g sqlite-parser
41+
npm i -g sqlite-parser@beta
3242
```
3343

3444
## Basic Usage
@@ -57,7 +67,7 @@ sqliteParser(query, function (err, ast) {
5767
});
5868
```
5969

60-
## Use parser on Node streams *(experimental)*
70+
## Use parser on Node streams *(experimental)* **(v1.0.0 beta only)**
6171

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

0 commit comments

Comments
 (0)