thingdom / node-neo4j

[RETIRED] Neo4j graph database driver (REST API client) for Node.js
Apache License 2.0
925 stars 135 forks source link

Seems to have issues with Node 12.7 While 12.4 works great #184

Open jrgleason opened 8 years ago

jrgleason commented 8 years ago

I have the following code...

var neo4j = require('neo4j'),
  db = new neo4j.GraphDatabase({
    url: conf.connectionString
  });
if(db.cypher){
  console.log("Worked");
}
else{
  console.log("Didn't work");
}

This works fine under 12.4 but fails in 12.7 (using Windows 10). Can someone confirm? Any idea what may cause this?

aseemk commented 8 years ago

Hey @jrgleason, sincere apologies for missing this issue! Just saw it now.

My first guess would be that in the Node version switch, the dependencies also changed, and with Node 12.7, you were using node-neo4j v1 instead of v2.

Is this still happening for you? Or did it resolve itself?