Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including neo4j-parser with all npm packages installed. Try it out:

var parser = require("neo4j-parser"); // Example // Parse the results of 2 queries, the first one should be parsed raw (unparsed) var response = { "results": [ { "columns": [ "value" ], "data": [ { "row": [ "hello" ], } ], },{ "columns": [ "value2" ], "data": [ { "row": [ "hello2" ], } ], } ], "errors": [] }; parser({ body: JSON.stringify(response), cb: function(err, index, resultObj) { console.log(JSON.stringify(arguments)); }, raw: false, isRaw: function(index) { if(index === 0) return true; else return false; } });

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

neo4j-parser v2.0.5

A sophisticated and simple parser for a Neo4J response

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free