Bun

指南包管理器

使用 Bun 添加 Git 依赖

Bun 支持直接添加 GitHub 存储库作为项目的依赖项。

bun add github:lodash/lodash

这会将以下行添加到你的 package.json

package.json
{
  "dependencies": {
    "lodash": "github:lodash/lodash"
  }
}

Bun 支持多种协议来指定 Git 依赖项。

bun add git+https://github.com/lodash/lodash.git
bun add git+ssh://github.com/lodash/lodash.git#4.17.21
bun add [email protected]:lodash/lodash.git
bun add github:colinhacks/zod

请参阅 文档 > 包管理器 以获取 Bun 包管理器的完整文档。