Files
bun.sh/docs/guides/install/npm-alias.md
2025-07-10 00:10:43 -07:00

24 lines
389 B
Markdown

---
name: Install a package under a different name
---
To install an npm package under an alias:
```sh
$ bun add my-custom-name@npm:zod
```
---
The `zod` package can now be imported as `my-custom-name`.
```ts
import { z } from "my-custom-name";
z.string();
```
---
See [Docs > Package manager](https://bun.com/docs/cli/install) for complete documentation of Bun's package manager.