Questions tagged [derbyjs]

Derby.js sets itself apart as a comprehensive JavaScript MVC framework that includes features such as HTML templates, view bindings, model syncing, customizable persistence, and conflict resolution capabilities.

Derbyjs installation failed: The system could not find a compatible version

Having some trouble installing derbyjs on my ubuntu machine. Here's what I've tried so far: sudo npm install -g derby Unfortunately, I'm running into the following errors: <200 response code here> npm ERR! error installing <a hre ...

Limit DerbyJS to re-rendering specific DOM elements

Currently, DerbyJS (visit http://derbyjs.com) functions by replacing everything in the body tag of the document each time a link is clicked. Is there a way to utilize the template, but replace only the content inside #main-content instead of refreshing th ...

Derby.js: organizing client-side code into separate files

I'm attempting to break up some client-side code into separate files within a Derby.js project. This code must remain client-side as it interacts with the TinyMCE editor. My initial attempt was: app.ready(function(model) { var tiny = derby.use(require ...