You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/spfx/set-up-your-development-environment.md
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Set up your SharePoint Framework development environment
3
3
description: Use Visual Studio or your own custom development environment to build SharePoint Framework solutions. You can use macOS, Windows, or Linux.
4
-
ms.date: 03/30/2021
4
+
ms.date: 04/28/2021
5
5
ms.prod: sharepoint
6
6
localization_priority: Priority
7
7
ms.custom: scenarios:getting-started
@@ -19,15 +19,14 @@ You can also follow these steps by watching this video on the SharePoint PnP You
19
19
20
20
## Install Node.js
21
21
22
-
Install the latest version of **[Node.js](https://www.nodejs.org) LTS v10.x**.
22
+
Install the latest version of **[Node.js](https://www.nodejs.org) LTS v14**.
23
23
24
24
This version is the currently recommended version of Node.js to use with the SharePoint Framework (*unless otherwise specified below*).
25
25
26
26
> [!IMPORTANT]
27
27
> Node.js is frequently updated and available on multiple platforms including macOS, Windows, and Linux. Because the exact download links change frequently, they aren't linked to from this page. Instead, use the details below to determine which installer to download for your platform.
28
28
>
29
29
> Be aware that Node.js maintains two different releases at all times: LTS & Current version. The SharePoint Framework is only supported on LTS versions. For more information about Node.js's Long Term Support (LTS) releases, see: [Node.js > Releases](https://nodejs.org/en/about/releases/).
30
-
>
31
30
32
31
> [!TIP]
33
32
> The Node.js website always recommends the latest installer for both the LTS & Current releases. To download specific versions of Node.js versions, use the [Node.js > Downloads > Previous Releases](https://nodejs.org/en/download/releases/) page.
@@ -41,9 +40,11 @@ You can check if you already have Node.js already installed, including installed
41
40
node -v
42
41
```
43
42
44
-
The SharePoint Framework v1.11 is supported on the following Node.js versions:
43
+
The SharePoint Framework v1.12.1 is supported on the following Node.js versions:
45
44
46
-
- Node.js v10 (*Dubnium*)
45
+
- Node.js v10.13.0+ (*Dubnium*)
46
+
- Node.js v12.13.0+ (*Erbium*)
47
+
- Node.js v14.15.0+ (*Fermium*)
47
48
48
49
> [!CAUTION]
49
50
> If you're building SharePoint Framework components for SharePoint Server 2016, see **[SPFx & SharePoint Server 2016](#spfx--sharepoint-server-2016)** section for additional details on which version of Node.js you should install.
@@ -79,6 +80,9 @@ Enter the following command to install Gulp:
79
80
npm install gulp --global
80
81
```
81
82
83
+
> [!IMPORTANT]
84
+
> If you're using Node.js v12+ or higher, you must use Gulp v4+. If you're using a version of Node.js lower than v12, you must use Gulp v3. For more information, see: [SharePoint Framework v1.12.1 release notes | Gulp versions & Node.js v12+](release-1.12.1.md#gulp-versions--nodejs-v12)
85
+
82
86
### Install Yeoman
83
87
84
88
[Yeoman](https://yeoman.io/) helps you kick-start new projects, and prescribes best practices and tools to help you stay productive. SharePoint client-side development tools include a Yeoman generator for creating new web parts. The generator provides common build tools, common boilerplate code, and a common playground website to host web parts for testing.
0 commit comments