Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
backbone-route-control
Advanced tools
> backbone-route-control adds support for __controller#action__ style syntax to > Backbone's router. > > This facilitates route callbacks to be defined in separate controller/handler > objects, helping to keep your router slim. This separation of concern
backbone-route-control adds support for controller#action style syntax to Backbone's router.
This facilitates route callbacks to be defined in separate controller/handler objects, helping to keep your router slim. This separation of concerns can also aid greatly in the maintainability and testability of these classes.
npm install backbone-route-control
or
bower install backbone-route-control
Create a router class, that extends from BackboneRouteControl.
var Router = BackboneRouteControl.extend({});
Define and organize your routes, using the controller#action syntax.
var Router = BackboneRouteControl.extend({
routes: {
'foo': 'foo#index',
'foo/new': 'foo#form',
'foo/:id': 'foo#show',
'foo/:id/edit': 'foo#form',
'whatever': 'whatever'
},
whatever: function() {}
});
Note that you can still define methods directly in the router and use the normal Backbone syntax as well.
Create controller classes, to match your route organization. These can be simple JavaScript objects or really whatever you like. I suggest to create them as functions so that you may inject options or dependencies.
var FooController = function(options) {
return {
index: function() {},
show: function(id) {},
form: function(id) {}
};
};
Instantiate your router, passing in a hash of controllers.
var router = new Router({
controllers: {
foo: new FooController()
}
});
grunt
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.
FAQs
> backbone-route-control adds support for __controller#action__ style syntax to > Backbone's router. > > This facilitates route callbacks to be defined in separate controller/handler > objects, helping to keep your router slim. This separation of concern
The npm package backbone-route-control receives a total of 9 weekly downloads. As such, backbone-route-control popularity was classified as not popular.
We found that backbone-route-control demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.