Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

backdash

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backdash

backbone js with lodash, ready for browserify

  • 1.1.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

backdash

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

Install

npm install backdash

Key Differences

backbone.js

Line 42 changed from:

if (!_ && (typeof require !== 'undefined')) _ = require('underscore');

to:

if (!_ && (typeof require !== 'undefined')) _ = require('lodash');

package.json

Line 8 changed from:

"underscore"  : ">=1.4.3"

to:

"lodash": "1.3.1"

Versions

This version of backdash is based on Backbone 1.1.0 and Lodash 1.3.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](http://backbonejs.org/)

```
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](https://github.com/substack/node-browserify#baddfile) used to build the project)
- `require('jquery')` before you first `require('backdash')`

Keywords

FAQs

Package last updated on 28 Nov 2013

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc