EntitySpaces / entityspaces.js

A JavaScript Data Access Framework that uses Knockout
www.entityspaces.net
36 stars 11 forks source link

A JavaScript Data Access Framework that uses Knockout

By: [EntitySpaces, LLC] (http://www.entityspaces.net)

License: MIT

Dependencies: Knockout

Download EntitySpaces 2012, it's 100% Free

EntitySpaces on Download.com

Live Examples

Features

Intuitive API


    // Add a single record
    var emp = new es.objects.Employees();
    emp.FirstName("Just");
    emp.LastName("Added");
    emp.save();

    // Or the same as above
    var emp = new es.objects.Employees({
        FirstName: 'Just',
        LastName: 'Added'
    });
    emp.Save();

EntitySpaces Studio Specific Abilities

Watch a few videos of entityspaces.js in action

Lazy Loading Properties
The Basic Construction

Example Class Definitions (pseudocode)

Real JavaScript Classes

Real World Usage Examples