2 repositorios
Systems that map local model operations to remote JSON APIs via standard HTTP methods.
Distinct from Persistence Layers: Specifically targets the mapping of client-side models to REST APIs, unlike local-only persistence candidates.
Explore 2 awesome GitHub repositories matching web development · RESTful Persistence Layers. Refine with filters or upvote what's useful.
Backbone is a JavaScript MVC framework and client-side data orchestrator used to structure web applications. It functions as an event-driven UI library and RESTful state manager that synchronizes data models with remote JSON interfaces to maintain consistent application state. The framework coordinates communication between application components through a decoupled event system. It binds data updates directly to the document object model, ensuring that the user interface remains synchronized with the underlying state. It provides tools for frontend data organization, allowing developers to
Maps model operations directly to HTTP methods to synchronize local state with a remote JSON API.
Backbone Fundamentals is an introductory guide to building structured client-side JavaScript applications using Backbone.js. It covers the core concepts of model-view-controller architecture, including models, views, collections, and routers, to compose maintainable single-page applications. The book explores event-driven state propagation, where model changes broadcast through custom events to decouple updates from view re-rendering, and a RESTful JSON sync layer that maps CRUD operations to HTTP endpoints. It also covers template-based view rendering, modular script loading for managing cod
Synchronises client-side models with a server by mapping CRUD operations to RESTful HTTP endpoints.