Node.js heap out of memory
If I remember correctly, there is a strict standard limit for the memory usage in V8 of around 1.7 GB, if you do not increase it manually. In one of our products we followed this solution in our deploy script: node –max-old-space-size=4096 yourFile.js There would also be a new space command but as I read … Read more