Home>Article>Web Front-end> Can nodejs be installed on windows7?
nodejs can be installed on windows7; in July 2011, Node released the Windows version with the support of Microsoft, but the highest nodejs version that windows7 can support is the "v13.14.0" version, which is higher than this version of nodejs It can no longer be installed on Windows 7; you can use "node -v" on the cmd interface to verify whether the installation is successful.
The operating environment of this article: windows7 system, nodejs v13.14.0 version, Dell G3 computer.
Node.js was released in May 2009 and developed by Ryan Dahl. It is a JavaScript running environment based on the Chrome V8 engine, using an event-driven, The non-blocking I/O model allows JavaScript to run on the server-side development platform, which makes JavaScript a scripting language on par with server-side languages such as PHP, Python, Perl, and Ruby.
Development History
In February 2009, Ryan Dahl announced on his blog that he was preparing to create a lightweight web server based on V8 and provide a set of libraries.
In May 2009, Ryan Dahl released part of the initial version of the Node package on GitHub. In the following months, some people began to use Node to develop applications.
Node.js lectures were arranged at both JSConf conferences in November 2009 and April 2010.
At the end of 2010, Node received funding from cloud computing service provider Joyent, and founder Ryan Dahl joined Joyent to be responsible for the development of Node full-time.
In July 2011, Node released the Windows version with the support of Microsoft.
Versions higher than v13.14.0 cannot be installed on win7
The installation example is as follows:
一, enter the official website download page to download the corresponding version of the msi installation package (https://nodejs.org/download/)
1. English: Tools --> Build System --> new Build System Chinese: Tools --> Compilation system --> Create a new compilation system;
2. Enter
{ "cmd": ["node", "$file"], "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)", "working_dir": "${project_path:${folder}}", "selector": "source.js", "shell": true, "encoding": "utf-8", "windows": { "cmd": ["node", "$file"] } }
in the open file. 3. If the system is not 64-bit, change the window cmd to :"cmd": ["taskkill /f /im node.exe >nul 2>nul & node", "$file"];
4. Press Ctrl in the file Just B can see the running results.
Recommended study: "nodejs video tutorial"
The above is the detailed content of Can nodejs be installed on windows7?. For more information, please follow other related articles on the PHP Chinese website!