Node js not working on windows 2008 server - node.js

I am trying to run my application on Windows 2008 server and i am getting the same error "This application is only supported on Windows 7,Windows Server 2008 R2, or higher".
Can someone suggest on how to fix this.

Please try to install the Node 4.x LTS version. The current LTS version is 8.12.0.
You can check this link to get supported NodeJS version https://nodejs.org/en/download/releases/
Take note that ES6 will not work in there.

I had the same problem, I followed the link https://nodejs.org/en/download/releases/
and installed Version 8x.
So far works well. If some have a higher version which is works, please share.

Related

NVM for Windows successfully installed but CMD prompt informs my version of Node.exe not compatible with my Windows version

I'm on a Microsoft Surface Pro X (it features Windows 10 Home on ARM 64-bit processor) trying to install Node.js. I've decided to use NVM for Windows. I can successfully install and get NVM for Windows running correctly. To my understanding, I'm able to install different versions of Node (i.e. 16.16.0 and 16.13.1, for example, both LTS) as shown in below graphic. But when I try to run Node, I get the error "This version of C:\Program Files\Nodejs\node.exe is not compatible with the version of Windows you're running. Check your computer's system information and then contact the software publisher."
I am not clear on the why this is happening. Am I not downloading a version of Node that is compatible on my ARM 64-bit processor? I've read through several closed issues on the GitHub page but I haven't encountered someone bringing up this same error. I'm pretty confident it does NOT have to do with the integrity of my symlinks too, or my system environment variables. See below:
Your help and insight is appreciated. Thanks.

How to latest version of Node JS on Windows 7

My workflow requires nodejs v16 but because of the platform checks the new version isn't available on Windows 7. The reason I have been using Windows 7 still is because I have a really poorly performing Computer with only 4GB ram. Trying some things on the internet have enabled me to install v15 but still some tasks require the new version. Any help would be highly appreciated.
If you create an environment variable called: NODE_SKIP_PLATFORM_CHECK and set it to 1, node 16.6.2 will run on Windows 7. I have not tried any later versions than that, and 16.13 has been reported by others as not working. (Later versions of node use a version of libuv that doesn't support Windows 7, and so will not run even with the environment variable set.)

HOW TO INSTALL A NODE V>14 IN WINDOWS 8?? Please someone help me

Right now I use node version 13.14.0 but to use the new version of create-react-app v5.0.0, I need to use node version 14 or later , which is not supported in windows 8. Does anyone have a solution for this?
error in creating a react app
I'm not aware of Windows 8 not supporting version 14.
You can download whichever version of version 14 you want here:
https://nodejs.org/dist/latest-v14.x/
You can also download the LTS version from here: https://nodejs.org/en/download/

Installed Meteor 1.4 not working, 1.3 was working perfectly

I installed the latest version of meteor from the installer on the site. I am running Windows 10.
Meteor was working perfectly for me and I had developed a number of sites. However, I updated and now I can't run meteor anywhere. It gives me the following error:
The solution to this was quite easy actually, just need to re-install Node and everything works as before!

Update nodejs in cygwin

Sometime back I've installed nodejs via cygwin which shows me the version 0.4.12 when I do node -v in bash.
Recently I've installed nodejs with the window installer which shows me the version 0.10.20 in window command prompt.
My Problem is I'm using Claymate for GumbyFramework in cygwin and it requires nodejs version above 0.8.0. How can I update the Nodejs in cygwin to the latest version?
Btw I'm using Windows Vista OS.
Pls. help!! Thanks in Advance..
Please know that Cygwin is not a supported platform. There would be a node version which would break things for you. The latest version that compiles natively on Cygwin is 0.4.12. Though the wiki page mentions some people had success building Node.js 0.10 on MinGW+MSYS. Try the following instructions : http://opensourcepack.blogspot.co.uk/2013/06/nodejs-with-posix-path-support.html
Don't mess with compile on Windows. You may want to just replace the old version Node.exe file with the newer Node.exe file on disk. You should be able to find the Cygwin folders within Windows explorer. You can search the entire disk, in windows not cygwin, for the file name node.exe. You should see the node.exe windows is finding, and the one cygwin is finding, under the cygwin folders.
Rename the cygwin node.exe and copy in the newer node.exe. Now, you nay get an issue with npm, in which case you may want to try the same thing with the npm folder.
I know cygwin isnt officially supported, but when you get it installed correctly it works.

Resources