TBone

Getting Started

OverviewSetupTodo App

API Documentation

base modelrunletbound-value modelscollectionsutility modelsReact integrationdebuggingutility functions
ContributingGithubMIT License

Setup

Requirements

Download

Development: <script src="https://cdn.tbonejs.org/tbone-2.0.0.js"></script>
Production: <script src="https://cdn.tbonejs.org/tbone-2.0.0.min.js"></script>

NPM

npm install tillberg-tbone

And in node or browserify:

var tbone = require('tillberg-tbone');
var hello;
tbone(function() {
  console.log(tbone('hello'));
});
tbone('hello', 'world');
// Outputs `undefined` and then `world`.