Closed5
Bun入れてみた

$ sw_vers
ProductName: macOS
ProductVersion: 13.4.1
ProductVersionExtra: (c)
BuildVersion: 22F770820d

$ docker run --rm -p 3000:3000 -v $(pwd):/app -w /app -it node:lts-slim /bin/bash

コンテナ上で
$ apt update -y && apt install curl unzip -y
$ curl -fsSL https://bun.sh/install | bash
$ bunx create-vite app --template vanilla-ts
$ cd app/
$ bun install
$ bun run dev --host 0 --port 3000

起動した
このスクラップは2023/11/11にクローズされました