How to Install bun js on linux

ยท

1 min read

How to Install bun js on linux

To install Bun.js on Linux, you can use the following steps:

  1. Open a terminal window.

  2. Make sure that the unzip package is installed. If it is not, you can install it with the following command:

sudo apt install unzip
  1. Run the following command to download and install Bun.js:
curl -fsSL https://bun.sh/install | bash
  1. Follow the on-screen instructions to complete the installation.

Once Bun.js is installed, you can verify that it is working by running the following command:

bun --version

This should output the current version of Bun.js.

You can now start using Bun.js to run JavaScript and TypeScript code. For more information, please see the Bun.js documentation: https://bun.sh/docs.

Note: Bun.js is still under development, and some features may not be fully implemented or stable.

Buy Me A Coffee

ย