Skip to content

Instantly share code, notes, and snippets.

@neaf
Created June 6, 2011 14:19
Show Gist options
  • Save neaf/1010345 to your computer and use it in GitHub Desktop.
Save neaf/1010345 to your computer and use it in GitHub Desktop.
.
├── README
├── app.js
├── css
│   ├── main.styl
│   └── reset.styl
├── db.js
├── game
│   ├── game.js
│   └── state_machine.js
├── lib
│   ├── connection_manager.js
│   ├── game_manager.js
│   ├── handlers
│   ├── message_handler.js
│   └── state_machine.js
├── node_modules
│   ├── async_testing
│   ├── cluster
│   ├── cluster-socket.io
│   ├── coffee-script
│   ├── connect
│   ├── connect-mongo
│   ├── express
│   ├── expresso
│   ├── gently
│   ├── jade
│   ├── log
│   ├── mime
│   ├── mongoose
│   ├── mootools
│   ├── qs
│   ├── sinon
│   ├── socket.io
│   ├── stately
│   ├── step
│   ├── stylus
│   ├── underscore
│   └── winston
├── package.json
├── public
│   ├── css
│   └── js
├── server.js
├── socket.js
├── test
│   └── game
└── views
├── home.jade
├── layout.jade
└── room.jade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment