mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
This PR addresses several issues opened for the docs: - Add callout for SQLite caching behavior between prepare() and query() - Fix SQLite types and fix deprecated exec to run - Fix Secrets API example - Update SolidStart guide - Add bun upgrade guide - Prefer `process.versions.bun` over `typeof Bun` for detection - Document complete `bunx` flags - Improve Nitro preset documentation for Nuxt Fixes #23165, #24424, #24294, #25175, #18433, #16804, #22967, #22527, #10560, #14744
63 lines
1.4 KiB
Plaintext
63 lines
1.4 KiB
Plaintext
---
|
|
title: Build an app with SolidStart and Bun
|
|
sidebarTitle: "SolidStart with Bun"
|
|
mode: center
|
|
---
|
|
|
|
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.
|
|
|
|
```sh terminal icon="terminal"
|
|
bun create solid my-app --solidstart --ts
|
|
```
|
|
|
|
```txt
|
|
┌
|
|
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.
|
|
|
|
```sh terminal icon="terminal"
|
|
cd my-app
|
|
bun install
|
|
```
|
|
|
|
Then run the development server with `bun dev`.
|
|
|
|
```sh terminal icon="terminal"
|
|
bun dev
|
|
```
|
|
|
|
```txt
|
|
$ vinxi dev
|
|
vinxi v0.5.8
|
|
vinxi starting dev server
|
|
|
|
➜ Local: http://localhost:3000/
|
|
➜ Network: use --host to expose
|
|
```
|
|
|
|
Open [localhost:3000](http://localhost:3000). Any changes you make to `src/routes/index.tsx` will be hot-reloaded automatically.
|
|
|
|
---
|
|
|
|
Refer to the [SolidStart website](https://docs.solidjs.com/solid-start) for complete framework documentation.
|