Hello everybody:)
I would want to know if the option of connect to neo4j from javascript enable also for free using?
I try it and its not work for me.
Some one can help?
var express = require('express');
var path=require('path');
var logger = require('morgan');
var bodyparser = require('body-parser');
var neo4j = require('neo4j-driver');
var app = express();
app.set('views', path.join(__dirname, 'views'));
app.set('views engine', 'ejs');
app.use(logger('dev'));
app.use(bodyparser.json());
app.use(bodyparser.urlencoded({extended:false}));
app.use(express.static(path.join(__dirname, 'public')));
const uri = 'bolt://localhost:7687'
const driver = neo4j.driver(uri, neo4j.auth.basic('neo4j', 'neo4j'));
var session = driver.session();
app.get('/', function(req, res){
session
.run('MATCH(n:Movie) return n LIMIT 25')
.then(function(result){result.records.foreach(function(record){
console.log(record);
alert(record);
});
})
.catch(function(err){
console.log(err);
})
res.send('It Works');
})
app.listen(3000);
console.log('server');
module.exports=app;
the error simply reports that the connection as failed as a result of incorrect authentication. Given your code it appears you are attempting to connect to the local instance of Neo4j over port :7687 and with a username/password or 'neo4j/neo4j'.
As the Neo4j Browser, i.e. http://localhost:7474, is a Javascript built application, have you confirmed you can login using these same credentials?
If you launch a browser ( i.e Google Chrome, Mozilla Firefox, Apple Safari ) and enter a URL of http://localhost:7474 you should be prompted for username/password