mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
389 B
389 B
name
| name |
|---|
| Install a package under a different name |
To install an npm package under an alias:
$ bun add my-custom-name@npm:zod
The zod package can now be imported as my-custom-name.
import { z } from "my-custom-name";
z.string();
See Docs > Package manager for complete documentation of Bun's package manager.