From c267d76f0566c9c8280b16c669e1a1bf6b123d3f Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Sun, 22 Sep 2024 00:25:47 -0700 Subject: [PATCH] Update from-npm-install-to-bun-install.md --- docs/guides/install/from-npm-install-to-bun-install.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/install/from-npm-install-to-bun-install.md b/docs/guides/install/from-npm-install-to-bun-install.md index e39e0d0411186..9e59147943d55 100644 --- a/docs/guides/install/from-npm-install-to-bun-install.md +++ b/docs/guides/install/from-npm-install-to-bun-install.md @@ -6,7 +6,7 @@ bun install is a Node.js compatible npm client designed to be an incredibly fast We've put a lot of work into making sure that the migration path from `npm install` to `bun install` is smooth and automatic. -- **Designed for Node.js & Bun**: `bun install` installs a Node.js compatible `node_modules` folder. You can use it in place of `npm install` for Node.js projects without any code changes. +- **Designed for Node.js & Bun**: `bun install` installs a Node.js compatible `node_modules` folder. You can use it in place of `npm install` for Node.js projects without any code changes and without using Bun's runtime. - **Automatically converts `package-lock.json`** to bun's `bun.lockb` lockfile format, preserving your existing resolved dependency versions without any manual work on your part. You can secretly use `bun install` in place of `npm install` at work without anyone noticing. - bun install reads npm registry configuration from npm's `.npmrc` as well as Bun's bunfig.toml - On Windows and Linux, `bun install` uses hardlinks to conserve disk space and install times