Package Exports
- neo4j-driver-core
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-core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Core module of the Neo4j Driver for JavaScript
⚠️ This package is not intended to be used by end users, it contains the abstractions used by the
neo4j-driver
to handleNeo4j
connections.
This is a internal package shared by the neo4j-driver and the neo4j-driver-lite drivers. This package is responsible for high level pieces of the driver such as Session
, Result
, Record
, some data types and the interface for Connection
and ConnectionProvider
.
Building
npm install
npm run build
This produces a Node.js module version under lib/
.
Testing
The tests could 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