Javascript

Switch to using Bun in Angular

I’m assuming you know what Bun is, and have it installed, and you’re using Angular CLI 17.2+

To switch to Bun for your new projects going forward with your CLI, run

ng config -g cli.packageManager bun

To switch an already existing project to use Bun, run the command below in the Angular project

ng config cli.packageManager bun

If you don’t know what Bun is, or how to install it, please, Google is your friend 😁

Run your Angular CLI commands as usual. Enjoy

Related Articles

Back to top button