/yt-tm-bun

Study project followed https://youtu.be/U4JVw8K19uY

Primary LanguageTypeScript

Bun Crash Course | JavaScript Runtime, Bundler & Transpiler

About

This is me following Brad Traversy's youtube video

Year 2023

Official website

https://bum.sh

Very fast backend framework built to be used with bum

https://elysiajs.com

Commands I run in order

Init bun app

bun init

Run .ts file

bun run index.ts

Run .ts file in watch mode

bun --watch index.ts

Run .ts file in hot mode

bun --hot index.ts

There is bunx the the there is npx

bunx cowsay Hello Bun

Run tests

bunx test

Run build

bun build ./src/index.ts --outfile=./dist/bundle.js

Auto generated readme with bum init

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.0.4. Bun is a fast all-in-one JavaScript runtime.