在终端运行 eval "$(curl https://get.x-cmd.com)" 即可完成 x 命令安装, 详情参考 x-cmd 官网
x-cmd 提供1分钟教程,其中包含了 bun 命令常用功能的 demo 示例,可以帮你快速上手 bun 。
使用案例:
# 支持 TS 和 JSX 开箱即用
$ x bun run hello.ts
$ x bun run process-argv.js hello world
# Bun 附带了一个内置的快速测试器
$ x bun test# Bun 有内置打包工具
$ x bun build ./hello-app/index.tsx --outdir ./out
# 使用 bunx 从 npm 自动安装和运行包
$ x bun x cowsay "Hello, world"# 可以用作包管理工具
x bun install jest
x bun remove jest