How to migrate to bun from yarn or npm
1 min read
- install bun globally
this is test
# with install scriptcurl -fsSL https://bun.sh/install | bash
# with npmnpm install -g bun
# with Homebrewbrew tap oven-sh/bunbrew install bun
# with Dockerdocker pull oven/bundocker run --rm --init --ulimit memlock=-1:-1 oven/bun
# on windowspowershell -c "irm bun.sh/install.ps1 | iex"
- migrate your project
cd <your-project>bun install
- remove yarn.lock or package-lock.json
rm yarn.lockrm package-lock.json