Skip to content

Installation

Table of Contents

Prerequisites

Installing the package itself has no Node.js requirement — the components run entirely in the browser. Node.js >= 18 is only needed to build the library or run the demo.

npm

npm install tskeleton

The package is not published to the npm registry yet. Until it is, use From GitHub below.

yarn

yarn add tskeleton

pnpm

pnpm add tskeleton

CDN

The UMD bundle registers every component automatically:

<script src="https://unpkg.com/tskeleton@0.2.0/dist/tskeleton.umd.cjs"></script>

The standalone stylesheet is also available:

<link rel="stylesheet" href="https://unpkg.com/tskeleton@0.2.0/dist/tskeleton.css">

The same files are served by jsDelivr at the equivalent https://cdn.jsdelivr.net/npm/tskeleton@0.2.0/dist/... URLs.

TODO: verify the CDN URLs once the package is actually published to the npm registry.

From GitHub

Install directly from the repository until the npm package is available:

npm install github:rkriad585/TSkeleton

Back to README