diff options
author | 2023-10-14 12:58:30 -0700 | |
---|---|---|
committer | 2023-10-14 12:58:30 -0700 | |
commit | f9add8b6bea4df3cdbd56a21f17e4cab1a854e4e (patch) | |
tree | 8e5306104d81c67b771181337bba02cd9ec39453 /README.md | |
parent | 81a1a58d66c598ea35c42453d0ba4c6341a940fc (diff) | |
parent | 9b5e66453b0879ed77b71dcdbe50e4efa184261e (diff) | |
download | bun-f9add8b6bea4df3cdbd56a21f17e4cab1a854e4e.tar.gz bun-f9add8b6bea4df3cdbd56a21f17e4cab1a854e4e.tar.zst bun-f9add8b6bea4df3cdbd56a21f17e4cab1a854e4e.zip |
Merge branch 'main' into sdlsdl
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,7 +31,7 @@ Bun is an all-in-one toolkit for JavaScript and TypeScript apps. It ships as a s At its core is the _Bun runtime_, a fast JavaScript runtime designed as a drop-in replacement for Node.js. It's written in Zig and powered by JavaScriptCore under the hood, dramatically reducing startup times and memory usage. ```bash -bun run index.tsx # TS and JSX supported out of the box +bun run index.tsx # TS and JSX supported out-of-the-box ``` The `bun` command-line tool also implements a test runner, script runner, and Node.js-compatible package manager. Instead of 1,000 node_modules for development, you only need `bun`. Bun's built-in tools are significantly faster than existing options and usable in existing Node.js projects with little to no changes. @@ -93,8 +93,8 @@ bun upgrade --canary - [`bun run`](https://bun.sh/docs/cli/run) - [`bun install`](https://bun.sh/docs/cli/install) - [`bun test`](https://bun.sh/docs/cli/test) - - [`bun init`](https://bun.sh/docs/templates#bun-init) - - [`bun create`](https://bun.sh/docs/templates#bun-create) + - [`bun init`](https://bun.sh/docs/cli/init) + - [`bun create`](https://bun.sh/docs/cli/bun-create) - [`bunx`](https://bun.sh/docs/cli/bunx) - Runtime - [Runtime](https://bun.sh/docs/runtime/index) |