https://github.com/djo/kaede
Example of a simple Long Polling implementation based on Chicago Boss and Backbone.js.
https://github.com/djo/kaede
Last synced: about 1 year ago
JSON representation
Example of a simple Long Polling implementation based on Chicago Boss and Backbone.js.
- Host: GitHub
- URL: https://github.com/djo/kaede
- Owner: djo
- Created: 2013-03-15T17:04:37.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2014-02-14T16:09:36.000Z (over 12 years ago)
- Last Synced: 2025-03-30T05:11:33.552Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 1.02 MB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Chicago Boss Demo
Example of a simple Long Polling implementation based on [Chicago Boss](http://www.chicagoboss.org/) and [Backbone.js.](http://backbonejs.org/)
### Development
Install Erlang/OTP-R15 and [rebar](https://github.com/basho/rebar) build-tool. After that:
./rebar get-deps
./rebar compile
./init-dev.sh
And you'll get it on localhost:8001.
### Use Cases
Sign up:
* User fills in a registration form and submits.
* User is logged into the application.
Create a topic:
* Member (Registered User) views a topic list on the dashboard.
* Member fills in a topic subject and submits.
* Member sees a newly created topic at the top of the list.
Write a new message:
* Member chooses a topic by clicking the subject.
* Member adds a new message to the topic.
* All members who openned the topic before see a newly added message.
### Contributors
* [Andrew Djoga](https://github.com/Djo)
* [Alexander Kovalev](https://github.com/asskovalev)
* [Roman](https://github.com/fellz)