moomou / cloveriteGraph

API for Cloverite
0 stars 0 forks source link

Node-Neo4j Template

This is a template app showing the use of Neo4j from Node.js. It uses the node-neo4j library, available on npm as neo4j.

The app is a simple social network manager: it lets you add and remove users and "follows" relationships between them.

This app supports deploying to Heroku, and a demo is in fact running live at http://node-neo4j-template.herokuapp.com/.

So try it out, browse the code, and fork this project to get a head start on creating your own Node-Neo4j app. Enjoy!

Installation

# Install the required dependencies
npm install

# Install a local Neo4j instance
curl http://dist.neo4j.org/neo4j-community-1.8.2-unix.tar.gz --O neo4j-community-1.8.2-unix.tar.gz
tar -zxvf neo4j-community-1.8.2-unix.tar.gz
rm neo4j-community-1.8.2-unix.tar.gz
ln -s neo4j-community-1.8.2/bin/neo4j neo4j

Usage

# Start the local Neo4j instance
./neo4j start

# Run the app!
npm start

The app will now be accessible at http://localhost:3000/.

The UI is admittedly quite crappy, but hopefully it shows the functionality. (Anyway, this project is really about the code! =P)

Miscellany