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.
A fork of backbone designed for use with lodash and browserify.
npm install backdash
backbone.js
Line 20 changed from:
var _ = require('underscore');
to:
var _ = require('lodash');
package.json
Line 8 changed from:
"underscore" : ">=1.5.0"
to:
"lodash": "2.4.1"
This version of backdash is based on Backbone 1.1.2 and Lodash 2.4.1
Use those versions explicitly in any other module that will build into the target project. Multiple versions of lodash in the dependency tree will cause multiple versions to appear in the built browserify bundle.
Also, it is helpful to run npm dedupe
after adding modules to the project in order to optimize files within node_modules
and, consequently, during dependency resolution at build.
First, install lodash and backdash:
npm install lodash
npm install backdash
Then, in each model
/collection
/view
/router
, use exactly like Backbone
var _ = require('lodash');
var B = require('backdash');
var ContentView = B.View.extend({
...
});
As before, lodash and jQuery (or an api-compatible library such as Zepto) must exist on the window
(or, as called in backbone source, root
). When building with browserify, the easiest solution is to either:
B.$ = global.$;
immediately after the first require('backdash')
(likely in the entry file used to build the project)require('jquery')
before you first require('backdash')
FAQs
backbone js with lodash, ready for browserify
The npm package backdash receives a total of 1 weekly downloads. As such, backdash popularity was classified as not popular.
We found that backdash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.