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
Read on to learn how to customize the default UI for your own documentation.
@@ -65,23 +65,23 @@ Next, make sure that you have Node.js installed (which also provides npm).
65
65
$ node --version
66
66
67
67
If this command fails with an error, you don't have Node.js installed.
68
-
If the command doesn't report an LTS version of Node.js (e.g., v10.15.3), it means you don't have a suitable version of Node.js installed.
69
-
In this guide, we'll be installing Node.js 10.
68
+
If the command doesn't report an LTS version of Node.js (e.g., v16.20.1), it means you don't have a suitable version of Node.js installed.
69
+
In this guide, we'll be installing Node.js 16.
70
70
71
71
While you can install Node.js from the official packages, we strongly recommend that you use {url-nvm}[nvm] (Node Version Manager) to manage your Node.js installation(s).
72
72
Follow the {url-nvm-install}[nvm installation instructions] to set up nvm on your machine.
73
73
74
-
Once you've installed nvm, open a new terminal and install Node.js 10 using the following command:
74
+
Once you've installed nvm, open a new terminal and install Node.js 16 using the following command:
75
75
76
-
$ nvm install 10
76
+
$ nvm install 16
77
77
78
78
You can switch to this version of Node.js at any time using the following command:
79
79
80
-
$ nvm use 10
80
+
$ nvm use 16
81
81
82
-
To make Node.js 10 the default in new terminals, type:
82
+
To make Node.js 16 the default in new terminals, type:
83
83
84
-
$ nvm alias default 10
84
+
$ nvm alias default 16
85
85
86
86
Now that you have Node.js installed, you can proceed with installing the Gulp CLI.
0 commit comments