File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,10 @@ Please note that `@next` only points to pre-releases that are not suitable for p
38
38
To get the latest stable release omit ` @next ` part altogether or use ` @latest ` instead.
39
39
40
40
``` javascript
41
+ // If you are using CommonJS
41
42
var neo4j = require (' neo4j-driver' )
43
+ // Alternatively, if you are using ES6
44
+ import neo4j from ' neo4j-driver'
42
45
```
43
46
44
47
Driver instance should be closed when Node.js application exits:
Original file line number Diff line number Diff line change @@ -38,7 +38,10 @@ Please note that `@next` only points to pre-releases that are not suitable for p
38
38
To get the latest stable release omit ` @next ` part altogether or use ` @latest ` instead.
39
39
40
40
``` javascript
41
+ // If you are using CommonJS
41
42
var neo4j = require (' neo4j-driver' )
43
+ // Alternatively, if you are using ES6
44
+ import neo4j from ' neo4j-driver'
42
45
```
43
46
44
47
Driver instance should be closed when Node.js application exits:
You can’t perform that action at this time.
0 commit comments