I am trying to send a http request to a neo4j database using node.js. This is the code I am using:
var options = {
host: \'localhost\',
port:
If it's a simple GET request, you should use http.get()
Otherwise, http.request()
needs to be closed.
var options = {
host: 'localhost',
port: 7474,
path: '/db/data',
method: 'GET',
headers: {
accept: 'application/json'
}
};
console.log("Start");
var x = http.request(options,function(res){
console.log("Connected");
res.on('data',function(data){
console.log(data);
});
});
x.end();