
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
backbone-browserify-lodash
Advanced tools
Give your JS App some Backbone with Models, Views, Collections, and Events. - For Browserify
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
Critical CVE and High CVE
Note: this is the same as backbone-browserify
, but with the dependency on lodash
instead of underscore
. This may or may not be useful to you. I'm also told that newever versions of backbone work with browserify out of the box. YMMV.
Removed require('jquery') in Backbone source for $
assignment. Didn't make sense, see #6
npm install backbone-browserify
Important: You must require jquery-browserify
, 'br-jquery', or Zepto (untested) with Browserify before you require Backbone, just like normal.
Just add it to your browserify require list and use it! Make sure you also have Underscore installed via npm as Backbone will automatically require it.
browserify({
require : [ 'jquery-browserify', 'backbone-browserify' ]
});
... or to alias it to just "backbone":
browserify({
require : { jquery: 'jquery-browserify', backbone: 'backbone-browserify' }
});
app.configure(function(){
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(express.static(__dirname + '/public'));
app.use(browserify({
require : { jquery: 'jquery-browserify', backbone: 'backbone-browserify' }
}));
});
***Include browserify.js
like this first: <script src="browserify.js"></script>
var $ = jQuery = require('jquery-browserify'),
Backbone = require('backbone-browserify'),
MyView = Backbone.View.extend({
el: 'body',
initialize: function() {
this.render();
},
render: function() {
$(this.el).html('<h1>Oh hi</h1>');
}
});
$(document).ready(function() { var myView = new MyView(); });
... or if you aliased it to 'backbone':
var $ = jQuery = require('jquery'),
Backbone = require('backbone'),
MyView = Backbone.View.extend({
el: 'body',
initialize: function() {
this.render();
},
render: function() {
$(this.el).html('<h1>Oh hi</h1>');
}
});
$(document).ready(function() { var myView = new MyView(); });
FAQs
Give your JS App some Backbone with Models, Views, Collections, and Events. - For Browserify
The npm package backbone-browserify-lodash receives a total of 1 weekly downloads. As such, backbone-browserify-lodash popularity was classified as not popular.
We found that backbone-browserify-lodash 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.