Skip to content

Commit 62e2afe

Browse files
authored
win/android docs: update node install to use nodejs-lts (#2869)
1 parent daedb20 commit 62e2afe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/_getting-started-windows-android.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ While you can use any editor of your choice to develop your app, you will need t
88

99
We recommend installing Node via [Chocolatey](https://chocolatey.org), a popular package manager for Windows.
1010

11-
If you want to be able to switch between different Node versions, you might want to install Node via [nvm-windows](https://github.com/coreybutler/nvm-windows), a Node version manager for Windows.
11+
It is recommended to use an LTS version of Node. If you want to be able to switch between different versions, you might want to install Node via [nvm-windows](https://github.com/coreybutler/nvm-windows), a Node version manager for Windows.
1212

1313
React Native also requires [Java SE Development Kit (JDK)](https://openjdk.java.net/projects/jdk8/), which can be installed using Chocolatey as well.
1414

1515
Open an Administrator Command Prompt (right click Command Prompt and select "Run as Administrator"), then run the following command:
1616

1717
```powershell
18-
choco install -y nodejs.install openjdk8
18+
choco install -y nodejs-lts openjdk8
1919
```
2020

21-
If you have already installed Node on your system, make sure it is Node 12 or newer. If you already have a JDK on your system, make sure it is version 8 or newer.
21+
If you have already installed Node on your system, make sure it is Node LTS 12 or newer. If you already have a JDK on your system, make sure it is version 8 or newer.
2222

2323
> You can find additional installation options on [Node's Downloads page](https://nodejs.org/en/download/).
2424

0 commit comments

Comments
 (0)