A front-end MVVM framework written in TypeScript
npm install platypus



PlatypusTS Distribution
==============
This repo is for distribution of PlatypusTS through bower and npm.
You can use either npm or bower to install this package.
``shell`
npm install platypus --save
This package works in CommonJS and on window, so if you are using
Browserify or other CommonJS
module loaders you can use require('platypus'). If you want to use plat onwindow, you need to include it in your index.html:
`html`
``
bower install platypus --save
This package works with CommonJS and on window. We recommend using Browserify
with debowerify, which gives you the ability to use require('platypus') with bower components.plat
If you want to use on window, you need to include it in your index.html:
`html`
This package includes a declaration file, as well as the source .js and .min.js file. If you are
using TypeScript >= 1.6.0 everything will be handled for you. Otherwise you can use one of the following
methods.
`shell`
typings install --save npm:platypus
Reference /node_modules/platypus/dist/platypus.d.ts from your tsconfig.json
It is recommended that you use a CommonJS module loader with PlatypusTS in favor of
using window.plat`.
Documentation is available on the Platypi Developers Website.