ui_migration edition(documentation) Removing Node.js windows workaround install, separating nvm instructions as optional for readability.

This commit is contained in:
Antonio Anaya 2026-05-22 11:53:54 -06:00
parent 1794f9b24e
commit 2bcced0e5b
3 changed files with 111 additions and 104 deletions

View file

@ -11,18 +11,22 @@
_Note: If you are using a Windows OS, the following commands must be executed in a Powershell terminal._
* [Get Node.js using the official installation scripts for your operating system.](https://nodejs.org/en/download/current)
* Recommended configuration: "Get Node.js v26, for Mac/Linux, using nvm, with npm"
* Using NVM (node-version-manager)
* To install Node.js v26 run:
`nvm install 26`
* To set the Node.js to version 26:
`nvm use 26`
* Configuration for Windows OS if nvm can't be installed in your system: "Get Node.js v26, for Windows, using Chocolatey, with npm".
* [Get Node.js v26 using the official installation scripts for your operating system.](https://nodejs.org/en/download/current)
* Install configurations: NPM is required, NVM is optional.
* Navigate into the webapp directory with `cd webapp`
* Install dependencies with `npm install`
* Build the static web app with `npm run build`
#### ( Optional ) Using NVM "Node-Version-Manager"
* [Install NVM](https://github.com/nvm-sh/nvm#installing-and-updating)
* To install Node.js v26 run:
`nvm install 26`
* To set the Node.js to version 26:
`nvm use 26`
## Live Server
When developing it is useful to use the development server so Vue changes happen instantly without the need to rebuild. To start the development server run: