Skip to content

Commit

Permalink
Merge pull request #9492 from pwamej/patch-1
Browse files Browse the repository at this point in the history
remove node version from installation instructions
  • Loading branch information
Rugvip committed Feb 17, 2022
2 parents c6cc3cc + c7a3ae7 commit 92b9197
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
3 changes: 1 addition & 2 deletions docs/getting-started/create-an-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ may want to [Run Backstage Locally](./running-backstage-locally.md) instead.
## Create an app

To create a Backstage app, you will need to have
[Node.js](https://nodejs.org/en/download/) Active LTS Release installed
(currently v14).
Node.js [Active LTS Release](https://nodejs.org/en/about/releases/) installed.

Backstage provides a utility for creating new apps. It guides you through the
initial setup of selecting the name of the app and a database for the backend.
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ guide to do a repository-based installation.
[Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl/)
- An account with elevated rights to install the dependencies
- `curl` or `wget` installed
- Node.js Active LTS Release installed (currently v14) using one of these
- Node.js [Active LTS Release](https://nodejs.org/en/about/releases/) installed using one of these
methods:
- Using `nvm` (recommended)
- [Installing nvm](https://github.com/nvm-sh/nvm#install--update-script)
Expand Down
7 changes: 4 additions & 3 deletions docs/getting-started/running-backstage-locally.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ trying to contribute, follow the instructions to

- Node.js

First make sure you are using Node.js with an Active LTS Release, currently v14.
First make sure you are using Node.js with an [Active LTS Release](https://nodejs.org/en/about/releases/).
This is made easy with a version manager such as
[nvm](https://github.com/nvm-sh/nvm) which allows for version switching.

```bash
# Installing a new version
nvm install 14
# Installing current LTS release
nvm install --lts
> Installing latest LTS version.
> Downloading and installing node v14.15.1...
> Now using node v14.15.1 (npm v6.14.8)

Expand Down

0 comments on commit 92b9197

Please sign in to comment.