Getting Started
= Installation =
Yarn
yarn add sensible-sdk
npm
npm install --save sensible-sdk
Browser bundle
<script src="https://unpkg.com/sensible-sdk@latest/dist/sensible.browser.min.js"></script>
= Usage =
Javascript
const sensible = require("sensible-sdk");
console.log(sensible)
ES6
import * as sensible from "sensible-sdk";
console.log(sensible)
Browser bundle
// `sensible` is provided in the global namespace by the `sensible.browser.min.js` script bundle.
console.log(sensible)
That’s it! now you can use the sensible object.