npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

backbone-abstract

v0.0.1

Published

A set of abstract classes extending Backbone.js and ES5/ES6/TypeScript demos built on it

Downloads

4

Readme

Backbone.Abstract

NPM

Backbone.Abstract extends Backbone.js framework with abstract classes Backbone.AbstractModel, Backbone.AbstractView, Backbone.AbstractForm and Backbone.JST

Getting started

git clone --depth 1 https://github.com/tbranyen/backbone-boilerplate

Updating dependencies

npm install

Building project

npm start

Running automated test

npm test

Backbone.AbstractModel

Backbone.AbstractModel.md provides generic functionality shared by all the models. In particular it automatically merges a supplied options hash into this.options. It also binds object properties to Backbone this.get/this.set methods. So in a subtype of Backbone.AbstractModel you can access/mutate attributes of a model directly (e.g. model.email = "[email protected]";).

Backbone.AbstractView

Backbone.AbstractView.md provides generic functionality shared by all the views. The same as Backbone.AbstractModel it automatically merges a supplied options hash into this.options. It has this.find method to deal with 'future' nodes and extends this.listenTo for better usage experience.

Backbone.AbstractForm

Backbone.AbstractForm.md abstracts form-related functionality Form View performs the following tasks:

  • validates form while typing (on-fly)
  • validates form while typing against server (when options.remote map provided)
  • validates form on submit
  • invokes handlers this.onFormSubmit, this.onFormInvalid, this.onFormError, this.onFormChange if available
  • triggers state-changed event when form validity state changes
  • toggles CSS classes is-valid, is-invalid, has-error, is-focused, is-visited on the form and inputs in accordance with object validity
  • processes form directives

Backbone.JST

Backbone.JST.md is template namespace that populates automatically from the embedded scripts

Backbone.utils

Backbone.utils.md extends Exoskeleton utils with debounce method

Vanilla Backbone

Backbone is the only popular JavaScript framework that doesn't attempts to do everything. It solves the only task and does it well - it brings a consistent abstraction layer to your application. And it could very light-weight if not the ugly legacy: jQuery and Underscore. Those dependencies are not only redundant nowadays, but can be considered even harmful (http://lea.verou.me/2015/04/jquery-considered-harmful/).

What we can do is to go with Exoskeleton - Backbone's fork decoupled from Underscore. Further by means of Backbone.NativeView/Backbone.Fetch we get rid of jQuery too. The formula is: Exoskeleton + Backbone.NativeView + Backbone.Fetch + Fetch API polyfill Array.from polyfill

The whole bundle concatenated and minimized can be found vendor/exoskeleton/native-exoskeleton.min.js

Handy tricks

Communication Between Modules

Modules like View can be dynamically created and removed and direct references can be be broken besides the fact of tight coupling. I suggest to encapsulate communication between modules in a mediator implementing PubSub interface. Here I extend Backbone.Router with Backbone.Events (Router/app). Thus we can trigger and subscribe for the type instance as well as for Router events across the application modules.

ES6 polyfills

Backbone.Abstract includes following polyfills:

  • Array.from - to convert a collection to an array

Analytics