A TypeScript library boilerplate. Check types pretty strictly, generates CommonJS, ESM and UMD bundles with Rollup.js and Bublé, setup unit tests with Jest and generate docs from sources with Typedoc.
This library is published in the NPM registry and can be installed using any compatible package manager.
npm install [libraryName] --save
# For Yarn, use the command below.
yarn add [libraryName]
This module has an UMD bundle available through JSDelivr and Unpkg CDNs.
<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/[libraryName]"></script>
<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/[libraryName]"></script>
<script>
// UMD module is exposed through the "[libraryCamelCaseName]" global variable.
console.log([libraryCamelCaseName]);
</script>
Documentation generated from source files by Typedoc.
Released under MIT License.