
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
backbone-browserify-lodash
Advanced tools
Give your JS App some Backbone with Models, Views, Collections, and Events. - For Browserify
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 0 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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.