The following code exhibits a growth in RSS and heap over time:
setInterval(function doLog() {
console.log(process.memoryUsage());
}, 100);

Attached image made by excel - extract measurements from above script to clipboard then:
pbpaste | grep heapTotal | cut -d " " -f 3,5,7 | pbcopy
Why is this happening?