Socket
Socket
Sign inDemoInstall

backbone

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

backbone

Give your JS App some Backbone with Models, Views, Collections, and Events.


Version published
Weekly downloads
559K
decreased by-0.96%
Maintainers
1
Weekly downloads
 
Created

What is backbone?

Backbone.js is a lightweight JavaScript library that provides the structure for web applications by offering models with key-value binding and custom events, collections with a rich API of enumerable functions, views with declarative event handling, and connects it all to your existing API over a RESTful JSON interface.

What are backbone's main functionalities?

Models

Models in Backbone.js represent the data and the logic of the application. They provide methods for data manipulation and validation.

const Backbone = require('backbone');

const Book = Backbone.Model.extend({
  defaults: {
    title: 'Unknown',
    author: 'Unknown'
  }
});

const myBook = new Book({ title: '1984', author: 'George Orwell' });
console.log(myBook.get('title')); // Outputs: 1984

Collections

Collections in Backbone.js are ordered sets of models. They provide a rich set of methods for handling and manipulating groups of models.

const Backbone = require('backbone');

const Book = Backbone.Model.extend({});
const Library = Backbone.Collection.extend({
  model: Book
});

const myLibrary = new Library([
  { title: '1984', author: 'George Orwell' },
  { title: 'Brave New World', author: 'Aldous Huxley' }
]);
console.log(myLibrary.length); // Outputs: 2

Views

Views in Backbone.js are responsible for rendering the user interface and handling user interactions. They are associated with a DOM element and a model.

const Backbone = require('backbone');

const BookView = Backbone.View.extend({
  tagName: 'li',
  render: function() {
    this.$el.html(this.model.get('title'));
    return this;
  }
});

const book = new Backbone.Model({ title: '1984' });
const bookView = new BookView({ model: book });
console.log(bookView.render().el.outerHTML); // Outputs: <li>1984</li>

Routers

Routers in Backbone.js provide methods for routing client-side pages and connecting them to actions and events.

const Backbone = require('backbone');

const AppRouter = Backbone.Router.extend({
  routes: {
    'books/:id': 'showBook'
  },
  showBook: function(id) {
    console.log('Book ID:', id);
  }
});

const router = new AppRouter();
Backbone.history.start();
router.navigate('books/1', { trigger: true }); // Outputs: Book ID: 1

Other packages similar to backbone

Keywords

FAQs

Package last updated on 11 Oct 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