EN
Node.js - FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory
1
answers
8
points
Why my Node.js throws?
FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - process out of memory
1 answer
1
points
You Node.js application requres more RAM.
By default Node.js use 512MB, so change it using:
node --max-old-space-size=1024 ./script.js
Btw. upgrade your node to 16.0.0 or later if it is possible.
Related topics
See also
0 comments
Add comment