diff --git a/mkdocs-website/docs/development/introduction.md b/mkdocs-website/docs/development/introduction.md
index c6eeb0253..6a2d6ca16 100644
--- a/mkdocs-website/docs/development/introduction.md
+++ b/mkdocs-website/docs/development/introduction.md
@@ -1,13 +1,14 @@
# Introduction
-**This guide is a work in progress.**
+!!! note
+ This guide is a work in progress.
Thanks for wanting to help out with development of Wails! This guide will help you get started.
## Getting Started
- Git clone this repository. Checkout the `v3-alpha` branch.
-- Install the CLI: `cd v3/cmd/3wails && go install`
+- Install the CLI: `cd v3/cmd/wails3 && go install`
- Optional: If you are wanting to use the build system to build frontend code, you will need to install [npm](https://nodejs.org/en/download).
@@ -57,7 +58,7 @@ Most, if not all, of the platform specific code should be run on the main thread
The runtime is located in `v3/internal/runtime`. When the runtime is updated, the following steps need to be taken:
```shell
-wails task runtime:build
+wails3 task runtime:build
```
### Events
diff --git a/mkdocs-website/docs/getting-started/feedback.md b/mkdocs-website/docs/getting-started/feedback.md
index b60c9a3e8..4a18081fa 100644
--- a/mkdocs-website/docs/getting-started/feedback.md
+++ b/mkdocs-website/docs/getting-started/feedback.md
@@ -40,6 +40,9 @@ Things we are looking for feedback on:
- The API
- Is it easy to use?
- Does it do what you expect?
+ - Is it missing anything?
+ - Is there anything that should be removed?
+ - Is it consistent between Go and JS?
- The build system
- Is it easy to use?
- Can we improve it?
diff --git a/mkdocs-website/docs/getting-started/installation.md b/mkdocs-website/docs/getting-started/installation.md
index 068eee2c2..2b631ef61 100644
--- a/mkdocs-website/docs/getting-started/installation.md
+++ b/mkdocs-website/docs/getting-started/installation.md
@@ -27,9 +27,11 @@ Wails has a number of common dependencies that are required before installation:
- Check Go is installed correctly: `go version`
- Check `~/go/bin` is in your PATH variable: `echo $PATH | grep go/bin`
-=== "NPM (Node 18+)"
+=== "npm (Optional)"
- Download NPM from the [Node Downloads Page](https://nodejs.org/en/download/). It is best to use the latest release as that is what we generally test against.
+ Although Wails doesn't require npm to be installed, it is needed if you want to use the bundled templates.
+
+ Download the latest node installer from the [Node Downloads Page](https://nodejs.org/en/download/). It is best to use the latest release as that is what we generally test against.
Run `npm --version` to verify.
diff --git a/mkdocs-website/overrides/home.html b/mkdocs-website/overrides/home.html
index 3cf46726f..836fe4b55 100644
--- a/mkdocs-website/overrides/home.html
+++ b/mkdocs-website/overrides/home.html
@@ -73,7 +73,7 @@
This site will be updated as we progress through the alpha and beta releases.
- v3 is a work in progress. Expect things to fail. Expect things to change.
+ v3 is a work in progress. Expect things to fail. Expect things to change. Expect the documentation to be wrong.
Please feel free to raise PRs against this website. Every single PR helps us get closer to a release.
Thank you for sharing this journey with us.