Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
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 15 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.