Skip to content

Commit

Permalink
Add deno instructions to quick-start (#974)
Browse files Browse the repository at this point in the history
  • Loading branch information
philhawksworth authored Dec 5, 2024
1 parent 3aea5a0 commit 9116e2d
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion src/routes/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/temp
<Callout title="Prerequisites">

- Familiarity with the command line
- Install [Node.js](https://nodejs.org/en)
- Install [Node.js](https://nodejs.org/en) or [Deno](https://deno.com)

</Callout>

Expand Down Expand Up @@ -48,6 +48,12 @@ pnpm dlx degit solidjs/templates/js my-app
bunx degit solidjs/templates/js my-app
```
</div>

<div id="deno">
```bash frame="none"
deno -A npm:degit solidjs/templates/js my-app
```
</div>
</TabsCodeBlocks>


Expand Down Expand Up @@ -83,6 +89,12 @@ pnpm install
bun install
```
</div>

<div id="deno">
```bash frame="none"
deno install
```
</div>
</TabsCodeBlocks>

4. Run the application:
Expand Down Expand Up @@ -111,6 +123,11 @@ pnpm dev
bun dev
```
</div>
<div id="deno">
```bash frame="none"
deno task dev
```
</div>
</TabsCodeBlocks>

This will start the development server.
Expand Down Expand Up @@ -144,6 +161,11 @@ pnpm dlx degit solidjs/templates/ts my-app
bunx degit solidjs/templates/ts my-app
```
</div>
<div id="deno">
```bash frame="none"
deno -A npm:degit solidjs/templates/ts my-app
```
</div>
</TabsCodeBlocks>

2. Navigate to your application's directory:
Expand Down Expand Up @@ -178,6 +200,11 @@ pnpm install
bun install
```
</div>
<div id="deno">
```bash frame="none"
deno install
```
</div>
</TabsCodeBlocks>

4. Run the application:
Expand Down Expand Up @@ -206,6 +233,11 @@ pnpm dev
bun dev
```
</div>
<div id="deno">
```bash frame="none"
deno task dev
```
</div>
</TabsCodeBlocks>


Expand Down

0 comments on commit 9116e2d

Please sign in to comment.