Skip to content

Commit 6dee0da

Browse files
committed
update
1 parent 4e29cc0 commit 6dee0da

File tree

1 file changed

+28
-3
lines changed

1 file changed

+28
-3
lines changed

src/routes/quick-start.mdx

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Start with the [TypeScript](https://stackblitz.com/github/solidjs/templates/tree
1818
:::
1919

2020
To create a new Solid application, start by installing the Solid CLI.
21-
First, ensure you have an up-to-date version of [Node.js](https://nodejs.org/) installed.
22-
Then, navigate to the directory where you want to create your project and run the following command:
21+
Navigate to the directory where you want to create your project and run the following command:
2322

2423
```package-create
2524
solid
@@ -48,8 +47,34 @@ The CLI will guide you through a series of prompts, allowing you to choose optio
4847

4948
Once the project is created, follow the instructions to install the dependencies and start the development server:
5049

51-
```shell
50+
```sh title="npm" tab="package-manager"
5251
cd solid-project
5352
│ npm install
5453
│ npm run dev
5554
```
55+
56+
```sh title="pnpm" tab="package-manager"
57+
cd solid-project
58+
│ pnpm install
59+
│ pnpm dev
60+
```
61+
62+
```sh title="yarn" tab="package-manager"
63+
cd solid-project
64+
│ yarn install
65+
│ yarn dev
66+
```
67+
68+
```sh title="bun" tab="package-manager"
69+
cd solid-project
70+
│ bun install
71+
│ bun run dev
72+
```
73+
74+
```sh title="deno" tab="package-manager"
75+
cd solid-project
76+
│ deno install
77+
│ deno run dev
78+
```
79+
80+
You should now have your Solid project running!

0 commit comments

Comments
 (0)