Bun
jsランタイムでありパッケージマネージャー
インストール
zshrcに下記を追加
code:.zshrc
# bunを使えるようにする
export PATH="$HOME/.bun/bin:$PATH"
動作確認
$ bun -v
1.0.14
簡易的なlocalhost webサーバー
code:index.tsx
const server = Bun.serve({
port: 3000,
fetch(request) {
return new Response("welcome to Bun!");
},
});
console.log(Listening to localhost:${server.port});
$ bun run index.tsx
welcome to Bun!