File tree Expand file tree Collapse file tree 1 file changed +33
-1
lines changed
Expand file tree Collapse file tree 1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ Additionally, we offer a [JavaScript](https://stackblitz.com/github/solidjs/temp
1313<Callout title = " Prerequisites" >
1414
1515 - Familiarity with the command line
16- - Install [ Node.js] ( https://nodejs.org/en )
16+ - Install [ Node.js] ( https://nodejs.org/en ) or [ Deno ] ( https://deno.com )
1717
1818</Callout >
1919
@@ -48,6 +48,12 @@ pnpm dlx degit solidjs/templates/js my-app
4848bunx degit solidjs/templates/js my-app
4949```
5050</div >
51+
52+ <div id = " deno" >
53+ ``` bash frame="none"
54+ deno -A npm:degit solidjs/templates/js my-app
55+ ```
56+ </div >
5157</TabsCodeBlocks >
5258
5359
@@ -83,6 +89,12 @@ pnpm install
8389bun install
8490```
8591</div >
92+
93+ <div id = " deno" >
94+ ``` bash frame="none"
95+ deno install
96+ ```
97+ </div >
8698</TabsCodeBlocks >
8799
881004 . Run the application:
@@ -111,6 +123,11 @@ pnpm dev
111123bun dev
112124```
113125</div >
126+ <div id = " deno" >
127+ ``` bash frame="none"
128+ deno task dev
129+ ```
130+ </div >
114131</TabsCodeBlocks >
115132
116133This will start the development server.
@@ -144,6 +161,11 @@ pnpm dlx degit solidjs/templates/ts my-app
144161bunx degit solidjs/templates/ts my-app
145162```
146163</div >
164+ <div id = " deno" >
165+ ``` bash frame="none"
166+ deno -A npm:degit solidjs/templates/ts my-app
167+ ```
168+ </div >
147169</TabsCodeBlocks >
148170
1491712 . Navigate to your application's directory:
@@ -178,6 +200,11 @@ pnpm install
178200bun install
179201```
180202</div >
203+ <div id = " deno" >
204+ ``` bash frame="none"
205+ deno install
206+ ```
207+ </div >
181208</TabsCodeBlocks >
182209
1832104 . Run the application:
@@ -206,6 +233,11 @@ pnpm dev
206233bun dev
207234```
208235</div >
236+ <div id = " deno" >
237+ ``` bash frame="none"
238+ deno task dev
239+ ```
240+ </div >
209241</TabsCodeBlocks >
210242
211243
You can’t perform that action at this time.
0 commit comments