Socket
Socket
Sign inDemoInstall

knockout.init

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

knockout.init

This is a simple knockout component that will automatically create observables from arbitrary json


Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

Knockout Init Component

This is a simple knockout component which will automatically create observables from arbitrary json.

It uses knockout.moment, knockout.money, and knockout.integer to automatically extend the observables with the specified names.

Installation

npm install knockout-init

Then add knockout.init.js to your project.

Usage

Include the script in your bundle, then:

var koInit = require("knockout.init");

var dataFromServer = {
	createdOn: "May 15, 2014",
	expiresOn: "May 15, 2037",
	numberOfThings: "4700",
	price: "570000",
	otherThing: "hello world"
};

var myObj = {};
koInit(myObj, dataFromServer, {
	dates: ["createdOn", "expiresOn"],
	integers: ["numberOfThings"],
	moneys: ["price"]
});

console.log(myObj.createdOn.usFormat()); //05/15/2014
console.log(myObj.numberOfThings.formatted()); //4,700
console.log(myObj.price.formatted()); //$570,000.00

How to Run Tests

Clone this repository and run:

npm install
npm run test

You will want to have mocha installed globally if you don't already have it. Install it if you don't:

npm install mocha -g

FAQs

Package last updated on 30 Jun 2016

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