最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Which Nodejs version should I set up on an old Windows XP machine? - Stack Overflow

programmeradmin4浏览0评论

Trying to set up Nodejs on an old puter (1GB ram, 900 Mhz) with Windows XP SP3 on it.

I installed the latest x86 version of Node (4.4.5) but when I trying to access it at mand line (like a simple version check node -version) it stops working and showing me that it encountered an problem and needs to close.

I suppose this newer versions not supporting XP anymore. Which version should I use on XP? Is it safe to use on a production environment?

Trying to set up Nodejs on an old puter (1GB ram, 900 Mhz) with Windows XP SP3 on it.

I installed the latest x86 version of Node (4.4.5) but when I trying to access it at mand line (like a simple version check node -version) it stops working and showing me that it encountered an problem and needs to close.

I suppose this newer versions not supporting XP anymore. Which version should I use on XP? Is it safe to use on a production environment?

Share Improve this question edited Jun 10, 2016 at 11:58 neptune asked Jun 10, 2016 at 9:14 neptuneneptune 1,2612 gold badges20 silver badges34 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Support for XP has been dropped in v6 so technically a v4 release should still work.

I think the problem is hardly anyone actually uses XP so you are going to be fighting a losing battle. Even if you raise an issue people aren't going to run to fix XP bugs.

You could try the latest 0.12 release.

It may have crashed in your case due to the CPU not having SSE2 support. In this case it is still possible to get it working by repiling the Node.

Other than that 4.x and 5.x versions should work. Yet 4.x became LTS and it's not obvious, which would fit you better. 4.x received updates up to 2018, whereas 5.x stopped being updated in 2016.

Changes in an LTS-covered major version are limited to:

  • Bug fixes;
  • Security updates;
  • Non-semver-major npm updates;
  • Relevant documentation updates;
  • Certain performance improvements where the risk of breaking existing applications is minimal;
  • Changes that introduce large amount of code churn where the risk of breaking existing applications is low and where the change in question may significantly ease the ability to backport future changes due to the reduction in diff noise.

Source: https://github./nodejs/Release

Version   Date        V8          npm     NODE_MODULE_VERSION
5.12.0    2016-06-23  4.6.85.32   3.8.6   47
4.9.1     2018-03-29  4.5.103.53  2.15.11 46

Source: https://nodejs/en/download/releases/

I use WinXP SP3 32-bit and the version of NodeJS that I have installed is: Node.js 5.12.0

It can be downloaded from: NodeJS v5.12.0

I used the .msi installer: node-v5.12.0-x86.msi

发布评论

评论列表(0)

  1. 暂无评论