java neo4j driver,Gitee 极速下载

Neo4j Driver for Javascript

A database driver for Neo4j 3.0.0+.

Find detailed docs here.

Include module in Node.js application

Stable channel:

npm installneo4j-driver

// or

bower installneo4j-driver

Pre-release channel:

npm installneo4j-driver@next

Please note that @next only points to pre-releases that are not suitable for production use.

To get the latest stable release omit @next part altogether or use @latest instead.

var neo4j = require('neo4j-driver');

Include in web browser

We build a special browser version of the driver, which supports connecting to Neo4j over WebSockets.

This will make a global neo4j object available, where you can access the v1 API at neo4j.v1:

var driver = neo4j.v1.driver("bolt://localhost", neo4j.auth.basic("neo4j", "neo4j"));

Usage examples

// Create a driver instance, for the user neo4j with password neo4j.

var driver = neo4j.driver("bolt://localhost", neo4j.auth.basic("neo4j", "neo4j"));

// Create a session to run Cypher statements in.

// Note: Always make sure to close sessions when you are done using them!

var session = driver.session();

// Run a Cypher statement, reading the result in a streaming manner as records arrive:

session

.run("MATCH (alice {name : {nameParam} }) RETURN alice.age", { nameParam:'Alice' })

.subscribe({

onNext: function(record) {

console.log(record);

},

onCompleted: function() {

// Completed!

session.close();

},

onError: function(error) {

console.log(error);

}

});

// or

// the Promise way, where the complete result is collected before we act on it:

session

.run("MATCH (alice {name : {nameParam} }) RETURN alice.age", { nameParam:'Alice' })

.then(function(result){

result.records.forEach(function(record) {

console.log(record);

});

// Completed!

session.close();

})

.catch(function(error) {

console.log(error);

});

//run statement in a transaction

var tx = session.beginTransaction();

tx.run("CREATE (alice {name : {nameParam} })", { nameParam:'Alice' });

tx.run("MATCH (alice {name : {nameParam} }) RETURN alice.age", { nameParam:'Alice' });

//decide if the transaction should be committed or rolled back

var success = ...

...

if (success) {

tx.commit()

.subscribe({

onCompleted: function() {

// Completed!

session.close();

},

onError: function(error) {

console.log(error);

}

});

} else {

//transaction is rolled black nothing is created in the database

tx.rollback();

}

Building

npm install

npm build

This produces browser-compatible standalone files under lib/browser and a Node.js module version under lib/.

See files under examples/ on how to use.

Testing

./runTests.sh

This runs the test suite against a fresh download of Neo4j.

Or npm test if you already have a running version of a compatible Neo4j server.

For development, you can have the build tool rerun the tests each time you change

the source code:

gulp watch-n-test

Testing on windows

Running tests on windows requires PhantomJS installed and its bin folder added in windows system variable Path.

To run the same test suite, run .\runTest.ps1 instead in powershell with admin right.

The admin right is required to start/stop Neo4j properly as a system service.

While there is no need to grab admin right if you are running tests against an existing Neo4j server using npm test.

A note on numbers and the Integer type

The Neo4j type system includes 64-bit integer values.

However, Javascript can only safely represent integers between -(253- 1) and (253- 1).

In order to support the full Neo4j type system, the driver includes an explicit Integer types.

Any time the driver recieves an Integer value from Neo4j, it will be represented with the Integer type by the driver.

Write integers

Number written directly e.g. session.run("CREATE (n:Node {age: {age}})", {age: 22}) will be of type Float in Neo4j.

To write the age as an integer the neo4j.int method should be used:

var neo4j = require('neo4j-driver').v1;

session.run("CREATE (n {age: {myIntParam}})", {myIntParam: neo4j.int(22)});

To write integers larger than can be represented as JavaScript numbers, use a string argument to neo4j.int:

session.run("CREATE (n {age: {myIntParam}})", {myIntParam: neo4j.int("9223372036854775807")});

Read integers

Since Integers can be larger than can be represented as JavaScript numbers, it is only safe to convert Integer instances to JavaScript numbers if you know that they will not exceed (253- 1) in size:

var aSmallInteger = neo4j.int(123);

var aNumber = aSmallInteger.toNumber();

If you will be handling integers larger than that, you can use the Integer instances directly, or convert them to strings:

var aLargerInteger = neo4j.int("9223372036854775807");

var integerAsString = aLargerInteger.toString();

To help you work with Integers, the Integer class exposes a large set of arithmetic methods.

Refer to the Integer API docs for details.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值