blob: 0b38d8c71605e7915faae341a1a243d600ddc036 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
---
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](/docs/cli/install) for complete documentation of Bun's package manager.
|