Skip to content

Commit 508c2a4

Browse files
authored
Merge pull request #53 from nodegui/update-docs
update docs regarding the starter project
2 parents 7036bfd + 5bf23be commit 508c2a4

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

website/docs/guides/getting-started.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ $ git clone https://github.com/nodegui/react-nodegui-starter
124124
$ cd react-nodegui-starter
125125
# Install dependencies
126126
$ npm install
127-
# Run the app
127+
# Run the dev server
128+
$ npm run dev
129+
# Run the app on a separate terminal tab or window
128130
$ npm start
129131
```
130132

website/docs/guides/tutorial.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ $ git clone https://github.com/nodegui/react-nodegui-starter
5656
$ cd react-nodegui-starter
5757
# Install dependencies
5858
$ npm install
59-
# Run the app
59+
# Run the dev server
60+
$ npm run dev
61+
# Run the app on a separate terminal tab or window
6062
$ npm start
6163
```
6264

website/src/components/Try.js

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const Try = () => {
5858
</Code>
5959
<Code>cd react-nodegui-starter</Code>
6060
<Code>npm install</Code>
61+
<Code>npm run dev</Code>
6162
<Code>npm start</Code>
6263
</Terminal>
6364
<SubTitle>

0 commit comments

Comments
 (0)