# Using bunx instead of using npx or pnpm dlx
bun create svelte@latest your_app
#Move to your app directory
cd your_app/
# Using bun pacakge manager
bun i
#start the dev server
bun dev
#build you app
bun run build
cd build/
#server your app
bun start