Directory Structure

|-- client/
|-- docs/
|-- node_modules/
|-- server/
|-- tasks/
|-- test/
|-- Gruntfile.js
|-- README.md
`-- package.json

Directory Structure: docs/

  • Tasks
  • Instructions for manual Neo4j configuration
  • How to clear the Neo4j database
  • References to documentation of used libraries and frameworks

Directory Structure: node_modules/

  • Dependencies that can be required (imported) in Node.JS
  • are automatically downloaded once you run npm install in the root directory
  • are defined in the file package.json
{
  "dependencies": {
    "express": "~3.2.1",
    "neo4j": "~0.2.20",
    "node-uuid": "~1.4.0",
    "superagent": "~0.14.2"
  }
}

Directory Structure: server/

  • contains Node.JS sources
  • implements server-side behavior like request handling and persistence
  • also responsible for serving static files, i.e. the frontend

Directory Structure: client/

  • contains HTML, CSS, JavaScript and images
  • implements client-side behavior and data presentation

Directory Structure: test/

  • unit and integration tests for client and server
  • test are run using mocha and Karma
  • starts up a browser in the background to test the user interface

Directory Structure: tasks/

  • Grunt extensions for the development server and testing
  • should not be of interest to you during the workshop