Simple guide for installing and running the Blade framework on Windows using WSL Ubuntu.
Run PowerShell/Terminal as Administrator:
wsl --installReboot your computer when prompted.
Open Ubuntu terminal and update:
sudo apt update && sudo apt install unzip curlcurl -fsSL https://bun.sh/install | bashRestart your Ubuntu terminal, then verify:
bun --versionImportant: Work in Ubuntu home directory (not /mnt/c/):
bunx @ronin/blade init my-app
cd my-app
bun installbun run devThat's it! Your Blade app is running with hot-reload. 🎉
- Always work in Ubuntu filesystem (
/home/username/) for best performance - Open projects in VS Code with
code .from Ubuntu terminal - Use
lsof -i :3000andkill -9 <PID>if port 3000 is busy
Happy coding! 🚀