High Memory Usage

I took a look at your VM and it looks like node.js is consuming 170MB of RSS memory.

Node.js has various defaults for memory usage which assume it has plenty of available memory to work with.

A 256MB VM is rather small in this respect :slight_smile: This is fine though! We love apps running in 256MB VMs here.

Here are some ideas:

NODE_OPTIONS="--max-old-space-size=192"
4 Likes