memory-leak-handler

Handle high memory utilization in nodejs by killing the process

Usage no npm install needed!

<script type="module">
  import memoryLeakHandler from 'https://cdn.skypack.dev/memory-leak-handler';
</script>

README

memory-leak-handler

Handle high memory utilization in nodejs by killing the process

Is this a good idea?

Of course

Are you sure?

Of course

Okay, can you show me how to use it?

Of course

var MemoryLeakHandler = require("memory-leak-handler");
var leak_handler = new MemoryLeakHandler({
    max_rss: 32,
    exit: function(fn){
        // clean up some things before the process is killed
        return fn();
    }
});

Features

  • Ready for prod