In order to be able to use [Bun](https://bun.sh/) to build your node projects, you will need to first add this step:

```bash
  curl -fsSL https://bun.sh/install | bash
  export PATH=~/.bun/bin:$PATH
  bun --version
```

**What's bun?**

Bun is **a JavaScript runtime, package manager, test runner and bundler built from scratch using the Zig programming language**. It was designed by Jarred Sumner as a drop-in replacement for Node. js.

Happy deploying!