JavaScript heap out of memory

JavaScript heap out of memory

bash
export NODE_OPTIONS="--max_old_space_size=8192"

If the above doesn't work,

bash
export NODE_OPTIONS="--max-old-space-size=16384"

Check Current Memory Limit

bash
node -e 'console.log(v8.getHeapStatistics().heap_size_limit/(1024*1024))'
Backlinks3