Home > Software design >  Run Bun on Windows
Run Bun on Windows

Time:07-12

Bun has been on every news aggregator and newsletter related to tech the past week due to its speed compared to create-react-app . I've tried to run it on Windows, but seems it is not supported yet. Does anyone know if they can run it on Windows?

CodePudding user response:

Bun doesn't support Windows natively yet, but you can use Windows Subsystem Linux:

wsl --install
wsl bun
  • Related