It is egg plugin for memdump.
memdump
is a tool that can help us dump the heap at the nodejs server when the memory has leaked.
$ npm i egg-memdump-plugin --save
// {app_root}/config/plugin.js
exports.memdumpPlugin = {
enable: true,
package: 'egg-memdump-plugin'
};
// {app_root}/config/config.default.js
exports.memdumpPlugin = {};