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
13
13
<Callout title = " Prerequisites" >
14
14
15
15
- 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 )
17
17
18
18
</Callout >
19
19
@@ -48,6 +48,12 @@ pnpm dlx degit solidjs/templates/js my-app
48
48
bunx degit solidjs/templates/js my-app
49
49
```
50
50
</div >
51
+
52
+ <div id = " deno" >
53
+ ``` bash frame="none"
54
+ deno -A npm:degit solidjs/templates/js my-app
55
+ ```
56
+ </div >
51
57
</TabsCodeBlocks >
52
58
53
59
@@ -83,6 +89,12 @@ pnpm install
83
89
bun install
84
90
```
85
91
</div >
92
+
93
+ <div id = " deno" >
94
+ ``` bash frame="none"
95
+ deno install
96
+ ```
97
+ </div >
86
98
</TabsCodeBlocks >
87
99
88
100
4 . Run the application:
@@ -111,6 +123,11 @@ pnpm dev
111
123
bun dev
112
124
```
113
125
</div >
126
+ <div id = " deno" >
127
+ ``` bash frame="none"
128
+ deno task dev
129
+ ```
130
+ </div >
114
131
</TabsCodeBlocks >
115
132
116
133
This will start the development server.
@@ -144,6 +161,11 @@ pnpm dlx degit solidjs/templates/ts my-app
144
161
bunx degit solidjs/templates/ts my-app
145
162
```
146
163
</div >
164
+ <div id = " deno" >
165
+ ``` bash frame="none"
166
+ deno -A npm:degit solidjs/templates/ts my-app
167
+ ```
168
+ </div >
147
169
</TabsCodeBlocks >
148
170
149
171
2 . Navigate to your application's directory:
@@ -178,6 +200,11 @@ pnpm install
178
200
bun install
179
201
```
180
202
</div >
203
+ <div id = " deno" >
204
+ ``` bash frame="none"
205
+ deno install
206
+ ```
207
+ </div >
181
208
</TabsCodeBlocks >
182
209
183
210
4 . Run the application:
@@ -206,6 +233,11 @@ pnpm dev
206
233
bun dev
207
234
```
208
235
</div >
236
+ <div id = " deno" >
237
+ ``` bash frame="none"
238
+ deno task dev
239
+ ```
240
+ </div >
209
241
</TabsCodeBlocks >
210
242
211
243
You can’t perform that action at this time.
0 commit comments