1. Introduction to Node.js
Simply put, Node.js is JavaScript running on the server. Node.js is a JavaScript runtime environment based on the Chrome V8 engine. Node.js uses an event-driven, non-blocking I/O model, making it lightweight and efficient. Node.js's package manager npm is the world's largest open source library ecosystem.
2. Download Node.js
Open the official website download link: https://nodejs.org/en/download/ Download the Node.js version corresponding to your system. What I downloaded here is node-v6.11.2-x64.msi, as shown below:
#3. After the download is completed, double-click "node-v6.11.2-x64. msi" to start installing Node.js
##Click the [Next] button Check the checkbox and click the [Next] button Click the [Next] button After installation, click the [Finish] button to complete the installationAt this point, Node.js has been installed. You can first simply test whether the installation is successful, and then configure the environment.
Press the [win+R] keys on the keyboard, enter cmd, and then press Enter. Open the cmd window
The above is the detailed content of Detailed installation of the new version of node.js_v6. For more information, please follow other related articles on the PHP Chinese website!