Skip to content

Commit 0cfa47a

Browse files
committed
Updates on dev env setup around npm
1 parent 6704be8 commit 0cfa47a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/spfx/set-up-your-development-environment.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ Install [NodeJS](https://nodejs.org/en/) Long Term Support (LTS) version.
1919
* If you have NodeJS already installed please check you have the latest version using `node -v`. It should return the current [LTS version](https://nodejs.org/en/download/).
2020
* If you are using a Mac, it is recommended you use [homebrew](http://brew.sh/) to install and manage NodeJS.
2121

22-
After installing node, make sure you are running V3 of npm by running the following command:
22+
After installing node, make sure npm is up to date by running following command:
2323

2424
```
25-
npm install -g npm@3
25+
npm install -g npm
2626
```
2727

2828
In case of Ubuntu Linux previous command might result in 'permission denied' message, so it should be instead executed as
2929

3030
```
31-
sudo npm install -g npm@3
31+
sudo npm install -g npm
3232
```
3333

3434
### Code Editors

0 commit comments

Comments
 (0)