Socket
Socket
Sign inDemoInstall

backdash

Package Overview
Dependencies
1
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    backdash

backbone js with lodash, ready for browserify


Version published
Maintainers
2
Install size
1.05 MB
Created

Readme

Source

backdash

A fork of backbone designed for use with lodash and browserify.

Install

npm install backdash

Key Differences

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"

Versions

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.

Usage

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({
...
});

Use with a DOM Library

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:

  • If loading jQuery from a CDN, explicitly set 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')

Keywords

FAQs

Last updated on 27 Apr 2014

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc