GithubHelp home page GithubHelp logo

jmm / backbone-model-retrofit Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 136 KB

Moderately successful experiment in retrofitting (dynamically, at runtime) legacy classes to function as Backbone model classes.

License: MIT License

JavaScript 100.00%

backbone-model-retrofit's Introduction

A moderately successful experiment in retrofitting (dynamically, at runtime)
classes that I wrote as straight JS (with some jQuery utility methods) so that
they'll function as Backbone.Model classes. Part of the point is so that I can
keep using the original classes with the original codebase and also with the new
Backbone codebase.

The gist of it is that it copies the methods and properties (which will become
the Backbone model attributes) from the legacy class to a new object which is
passed to Backbone.Model.extend().  For the attribute properties, getters /
setters (in this case, the ES5 variety) are created, which proxy to
Backbone.Model get() / set(). That allows standard property access in the
original class to continue to function, while populating Backbone Model
attributes (accessible by Backbone.Model get() / set() in the Backbone code).
E.g.

// Original class

var something = this.whatever;

this.something = "whatever";


// Backbone code

this.get( 'something' ) === "whatever";


Jesse McCarthy
2012-07-22

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.