Skip to content

Getting Started

This section will help you set up and start using starter-lib-ts.

Using Package Manager

sh
npm install starter-lib-ts
sh
yarn add starter-lib-ts
sh
pnpm install starter-lib-ts

Browser Direct Import

js
<script src="https://unpkg.com/starter-lib-ts"></script>

It will be exposed as window.StarterLibTs in the global object.

Usage Example

Simply import the required functions from starter-lib-ts.

js
import { sayHello } from 'starter-lib-ts'

sayHello('Kieran')

For more information, please refer to the functions List.

Released under the MIT License.