neo4j-driver
Advanced tools
Comparing version 1.0.0-alpha4 to 1.0.0-alpha5
{ | ||
"name": "neo4j-driver", | ||
"version": "1.0.0-alpha4", | ||
"version": "1.0.0-alpha5", | ||
"description": "Connect to Neo4j 3.0.0 and up from JavaScript", | ||
@@ -18,3 +18,3 @@ "author": "Neo Technology Inc.", | ||
}, | ||
"main": "lib/neo4j.js", | ||
"main": "lib/index.js", | ||
"devDependencies": { | ||
@@ -21,0 +21,0 @@ "babel": "^5.8.23", |
@@ -14,3 +14,3 @@ # Neo4j Driver for Javascript | ||
```javascript | ||
var neo4j = require('neo4j-driver/v1'); | ||
var neo4j = require('neo4j-driver').v1; | ||
``` | ||
@@ -113,3 +113,3 @@ | ||
```javascript | ||
var neo4j = require('neo4j-driver'); | ||
var neo4j = require('neo4j-driver').v1; | ||
@@ -116,0 +116,0 @@ session.run("CREATE (n {age: {myIntParam}})", {myIntParam: neo4j.int(22)}); |
@@ -35,3 +35,3 @@ /** | ||
var neo4jV1 = require("../lib/v1"); | ||
// Then I can access and use V1 of the API | ||
@@ -38,0 +38,0 @@ var driver = neo4jV1.driver("bolt://localhost"); |
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4648620