Skip to main content

Build a Kit with Bun and Typescript

The best way to build a kit in javascript or typescript is with the provided @pwrtool/kit package on npm. This package is built in bun for bun. It has not been tested in deno or node.js, so your mileage may vary.

Getting Your Enviornment Setup

First, create a new directory

mkdir my-first-kit
cd my-first-kit

# initialize git repo- optional
git init
function helloWorld() {
return true;
}