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:
Colin McDonnell
2023-07-31 12:20:23 -07:00
committed by GitHub
parent 67599f97ad
commit 404b90badc
33 changed files with 899 additions and 47 deletions

View File

@@ -0,0 +1,26 @@
---
name: Add a development dependency
---
To add an npm package as a development dependency, use `bun add --development`.
```sh
$ bun add zod --development
$ bun add zod -d # shorthand
```
---
This will add the package to `devDependencies` in `package.json`.
```json-diff
{
"devDependencies": {
+ "zod": "^3.0.0"
}
}
```
---
See [Docs > Package manager](/docs/cli/install) for complete documentation of Bun's package manager.