mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Add ecosystem guides (#3847)
* Add ecosystem guides * Update titles * Rename stric * Add unlink and fetch guides * Add formdata guide * Tweak title * Moar
This commit is contained in:
23
docs/guides/install/npm-alias.md
Normal file
23
docs/guides/install/npm-alias.md
Normal file
@@ -0,0 +1,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.
|
||||
Reference in New Issue
Block a user