May 2015
Beginner to intermediate
226 pages
4h 37m
English
Node.js is getting increasingly popular with the entrant of JavaScript on the server side due to its asynchronous nature.
In this recipe, we will learn how to access the Neo4j graph database using Node.js.
Node-Neo4j is the most popular client when its comes to accessing the Neo4j graph database server from Node.js. For more information on this, you can refer to https://github.com/thingdom/node-neo4j.
The following steps will get you started with Node-Neo4j:
npm install neo4j
var neo4j = require('neo4j');The following steps ...
Read now
Unlock full access