Files
bun-src/docs/guides/install/add-tarball.mdx
T
2026-08-27 21:09:14 +00:00

36 lines
721 B
Plaintext

---
title: Add a tarball dependency
sidebarTitle: Add a tarball dependency
mode: center
---
Bun's package manager can install any publicly available tarball URL as a dependency of your project.
```sh terminal icon="terminal"
bun add zod@https://registry.npmjs.org/zod/-/zod-3.21.4.tgz
```
---
This command downloads, extracts, and installs the tarball into your project's `node_modules` directory, and adds the following line to your `package.json`:
```json package.json icon="file-json"
{
"dependencies": {
"zod": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz" // [!code ++]
}
}
```
---
You can now import `zod` as usual.
```ts
import { z } from "zod";
```
---
See [`bun install`](/pm/cli/install).