Node.exe Stuck at 100% CPU

I have a ExpressJS node.js application running on IISNode on Windows Server 2016 VM with 4 cores and 32GB of memory. I am able to set one process per core, so I have 4 node.exe’s running for my app. Node version is v6.10.3. This is what the resources normally look like: I can see that … Read more

Start script missing error when running npm start

It looks like you might not have defined a start script in your package.json file or your project does not contain a server.js file. If there is a server.js file in the root of your package, then npm will default the start command to node server.js. You could either change the name of your application script to server.js or add the following to … Read more