Giter VIP home page Giter VIP logo

ko.sidekick's Introduction

Knockout Sidekick

This project is my playground for introducing Backbone concepts that work with Knockout. Warning: This project is in its early stages. Proceed with caution

Want to help?

  • run npm install to install dependencies
  • run npm test to run tests

Model

//define a Model
var Person = ko.Model({
	urlRoot:'/Person',
	defaults:{ //We'll make sure we always have these observable properties on the model
		firstName:"", 
		lastName:"",
		fullName: function(){ //We'll even wire up computed observables for you
			return this.firstName+ " "+ this.lastName; //"this" will be your model instance
		} 
	}
});

//create your very own person
//The properties you pass in will be created as observables on your instance
var josh = new Person({
	firstName: "Josh", //default property will be overidden
	twitter: "@digitalbush",
	websites: ["http://digitalbush.com","http://freshbrewedcode.com"] //Arrays work too!
});

//Save it. The default implementation follows a RESTful pattern that will
// POST to the urlRoot defined above if no id is set on the model
// PUT to "{urlRoot}/{id}" if an id is set
josh.save();


//You can fetch a model if you know its id
var fred = new Person({id:42});
fred.fetch();

ko.sidekick's People

Contributors

digitalbush avatar jcreamer898 avatar

Watchers

 avatar Jason Cole avatar James Cloos avatar  avatar

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.