https://github.com/danasilver/backbone-socketio-d3-example
Chat example using Backbone, Socket.io, D3 with Node/Express on the backend.
https://github.com/danasilver/backbone-socketio-d3-example
Last synced: 12 days ago
JSON representation
Chat example using Backbone, Socket.io, D3 with Node/Express on the backend.
- Host: GitHub
- URL: https://github.com/danasilver/backbone-socketio-d3-example
- Owner: danasilver
- Created: 2014-07-17T21:26:14.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-15T21:00:38.000Z (almost 12 years ago)
- Last Synced: 2025-02-24T02:30:26.616Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 164 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## [Backbone](http://backbonejs.org/)-[Socket.io](http://socket.io/)-[D3](http://d3js.org/)-example
### Setup and develop
[npm][1] comes bundled with Node.js v0.6.3 and greater. Install [bower][2] with
`npm install -g bower`.
Install dependencies using [npm][1] and [bower][2]:
```sh
$ npm install
$ bower install
```
Start the server on port 3000:
```sh
$ npm start
```
Alternatively, you can install [nodemon](http://nodemon.io/) with
`npm install -g nodemon`, which will watch for changes and restart the server
automatically. Now run `nodemon app.js` to start the server.
[1]: https://www.npmjs.org/ "npm"
[2]: http://bower.io/ "bower"