skills/bun-guides-ecosystem-solidstart/SKILL.md
Build an app with SolidStart and Bun
npx skillsauth add jarle/bun-skills Bun Build an app with SolidStart and BunInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Initialize a SolidStart app with create-solid. You can specify the --solidstart flag to create a SolidStart project, and --ts for TypeScript support. When prompted for a template, select basic for a minimal starter app.
bun create solid my-app --solidstart --ts
┌
Create-Solid v0.6.11
│
◇ Project Name
│ my-app
│
◇ Which template would you like to use?
│ basic
│
◇ Project created 🎉
│
◇ To get started, run: ─╮
│ │
│ cd my-app │
│ bun install │
│ bun dev │
│ │
├────────────────────────╯
As instructed by the create-solid CLI, install the dependencies.
cd my-app
bun install
Then run the development server with bun dev.
bun dev
$ vinxi dev
vinxi v0.5.8
vinxi starting dev server
➜ Local: http://localhost:3000/
➜ Network: use --host to expose
Open localhost:3000. Any changes you make to src/routes/index.tsx will be hot-reloaded automatically.
Refer to the SolidStart website for complete framework documentation.
development
Using TypeScript with Bun, including type definitions and compiler options
development
Learn how to write tests using Bun's Jest-compatible API with support for async tests, timeouts, and various test modifiers
testing
Learn how to use snapshot testing in Bun to save and compare output between test runs
testing
Learn about Bun test's runtime integration, environment variables, timeouts, and error handling