Last Updated: September 27, 2021
·
5.107K
· dperrymorrow

Most minimal backbone.js app possible

As simple as possible backbone.js app to demonstrate how to wire one up. Does not even have a serverside, just persists full crud clientside with the server calls commented out. It lets you create, read, update, delete notes, all with hashtag urls via a Backbone.js router.

  • Working Demo

http://dperrymorrow.github.com/example-backbone-app

  • Source Code

https://github.com/dperrymorrow/example-backbone-app

2 Responses
Add your response

cool, I want to know what is the best option to do the backend with backbone

over 1 year ago ·

anything that supports REST endpoints and JSON format will work just fine. Even if the server-side you are working with does not support full REST, then you can just switch on the _method param that gets posted as an alternative. I personally have mostly use Backbone.js on top of a Rails stack.

over 1 year ago ·