Is there a working solution for integrating Neo4j 1.6 into NodeJS?

I found some relevant modules on Github, but they do not work. Does anyone know of some other available solutions?

These are the three I've tried:

https://github.com/bobby/node-neo4j https://github.com/gasi/node-neo4j https://github.com/neo4j/neo4js 
+7
source share
3 answers

Go with the repo made by the people who make Neo4J: https://github.com/neo4j/neo4js

As I mentioned, it was created and maintained by people for Neo4J and is constantly updated. I am using this currently in a project and it works fantastically well. The only thing you need to know is that you need to run Node.JS 1.6 or better for the modules to work.

If you have any questions, write me a line or you can also ask in the forum: http://neo4j.org/nabble/

+4
source

I am one of the authors / maintainers of @gasi node -neo4j ( npm install neo4j ). Admittedly, we did not increase it by 1.6 (we are still at 1.4, but plan to update in the near future), but it works very well - we have been using it on our production site for many months!

May I ask what is the problem? By the way, we moved the repo to our official repo organization: https://github.com/thingdom/node-neo4j

+3
source

Take a look at: https://github.com/philippkueng/node-neo4j

 npm install node-neo4j 

We are currently working on upgrading to Neo4j 2.0.

It will support insert node with label, indexes on labels, CRUD for labels, restrictions and streaming.

My work (fork): https://github.com/Stofkn/node-neo4j

0
source

All Articles