diff --git a/website/docs/guides/getting-started.md b/website/docs/guides/getting-started.md index 5a2ee30b..7d8afbde 100644 --- a/website/docs/guides/getting-started.md +++ b/website/docs/guides/getting-started.md @@ -124,7 +124,9 @@ $ git clone https://github.com/nodegui/react-nodegui-starter $ cd react-nodegui-starter # Install dependencies $ npm install -# Run the app +# Run the dev server +$ npm run dev +# Run the app on a separate terminal tab or window $ npm start ``` diff --git a/website/docs/guides/tutorial.md b/website/docs/guides/tutorial.md index 95fc50c6..a65a55cc 100644 --- a/website/docs/guides/tutorial.md +++ b/website/docs/guides/tutorial.md @@ -56,7 +56,9 @@ $ git clone https://github.com/nodegui/react-nodegui-starter $ cd react-nodegui-starter # Install dependencies $ npm install -# Run the app +# Run the dev server +$ npm run dev +# Run the app on a separate terminal tab or window $ npm start ``` diff --git a/website/src/components/Try.js b/website/src/components/Try.js index 50444afb..9f024881 100644 --- a/website/src/components/Try.js +++ b/website/src/components/Try.js @@ -58,6 +58,7 @@ export const Try = () => { cd react-nodegui-starter npm install + npm run dev npm start