JSPM

  • Created
  • Published
  • Downloads 243498
  • Score
    100M100P100Q200570F
  • License Apache-2.0

Implements the connection with the Neo4j Database using the Bolt Protocol

Package Exports

  • neo4j-driver-bolt-connection
  • neo4j-driver-bolt-connection/lib/channel/browser/index.js
  • neo4j-driver-bolt-connection/lib/channel/node/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (neo4j-driver-bolt-connection) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Bolt connection module of the Neo4j Driver for JavaScript

⚠️ This package is not intended to be used by end users, it contains the basic tools used by the neo4j-driver to connect to Neo4j.

This is an internal package shared by the neo4j-driver and the neo4j-driver-lite drivers. This package is responsible for implementing the Bolt Protocol using the Connection and ConnectionProvider interfaces defined by neo4j-driver-core package.

Building

It's required to first build the neo4j-driver-core under the ../core (see instruction on its folder). Then,

npm install
npm run build

This produces a Node.js module version under lib/.

Testing

The tests can be executed by running npm test. For development, you can have the build tool rerun the tests each time you change the source code:

npm run test::watch