We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
@next
1 parent b9df625 commit ff40237Copy full SHA for ff40237
README.md
@@ -6,12 +6,21 @@ Find detailed docs [here](http://neo4j.com/docs/api/javascript-driver/current/).
6
7
## Include module in Node.js application
8
9
+Stable channel:
10
```shell
11
npm install neo4j-driver
12
// or
13
bower install neo4j-driver
14
```
15
16
+Pre-release channel:
17
+```shell
18
+npm install neo4j-driver@next
19
+```
20
+
21
+Please note that `@next` only points to pre-releases that are not suitable for production use.
22
+To get the latest stable release omit `@next` part altogether or use `@latest` instead.
23
24
```javascript
25
var neo4j = require('neo4j-driver');
26
0 commit comments