How can I monitor the memory usage of Node.js?
Also, if you'd like to know global memory rather than node process':
var os = require('os'); os.freemem(); os.totalmem();
See documentation