Bun

bun link

在本地目录中使用 bun link 将当前包注册为“可链接”包。

cd /path/to/cool-pkg
cat package.json
{
  "name": "cool-pkg",
  "version": "1.0.0"
}
bun link
bun link v1.x (7416672e)
Success! Registered "cool-pkg"

To use cool-pkg in a project, run:
  bun link cool-pkg

Or add it in dependencies in your package.json file:
  "cool-pkg": "link:cool-pkg"

现在可以使用 bun link cool-pkg 将此包“链接”到其他项目中。这将在目标项目的 node_modules 目录中创建一个符号链接,指向本地目录。

cd /path/to/my-app
bun link cool-pkg

此外,可以使用 --save 标志将 cool-pkg 添加到应用的 package.json 的 dependencies 字段,其中包含一个特殊版本说明符,告诉 Bun 从注册的本地目录加载,而不是从 npm 安装

{
  "name": "my-app",
  "version": "1.0.0",
  "dependencies": {
    "cool-pkg": "link:cool-pkg"
  }
}