diff options
author | 2021-12-22 19:24:18 -0800 | |
---|---|---|
committer | 2021-12-22 19:24:18 -0800 | |
commit | c59ff7416abeb52ecd2eb8328f4313e1f3b0b722 (patch) | |
tree | 5cb8cc7a2dfc52c74f29860a8f3484f7c0f75973 | |
parent | c943072193e92b63665e1aa6e8a829337ad31c09 (diff) | |
download | bun-c59ff7416abeb52ecd2eb8328f4313e1f3b0b722.tar.gz bun-c59ff7416abeb52ecd2eb8328f4313e1f3b0b722.tar.zst bun-c59ff7416abeb52ecd2eb8328f4313e1f3b0b722.zip |
Move install above table of contentsbun-v0.0.58
-rw-r--r-- | README.md | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -13,6 +13,12 @@ All in one fast & easy-to-use tool. Instead of 1,000 node_modules for develo **Bun is experimental software**. Join [Bun’s Discord](https://bun.sh/discord) for help and have a look at [things that don’t work yet](#things-that-dont-work-yet). +## Install + +```sh +curl -fsSL https://bun.sh/install | bash +``` + ## Table of Contents - [Install](#install) @@ -47,12 +53,6 @@ All in one fast & easy-to-use tool. Instead of 1,000 node_modules for develo - [Linux](#linux) - [vscode-zig](#vscode-zig) -## Install - -```sh -curl -fsSL https://bun.sh/install | bash -``` - ## Benchmarks **CSS**: [Bun is 14x faster](./bench/hot-module-reloading/css-stress-test) than Next.js at hot reloading CSS. TODO: compare Vite @@ -561,7 +561,7 @@ Environment variables | Name | Description | | -------------------------------- | ------------------------------------------------------------- | -| BUN_CONFIG_REGISTRY | Set an npm registry (default: <https://registry.npmjs.org>) | +| BUN_CONFIG_REGISTRY | Set an npm registry (default: <https://registry.npmjs.org>) | | BUN_CONFIG_TOKEN | Set an auth token (currently does nothing) | | BUN_CONFIG_LOCKFILE_SAVE_PATH | File path to save the lockfile to (default: bun.lockb) | | BUN_CONFIG_YARN_LOCKFILE | Save a Yarn v1-style yarn.lock | |