Comment recharger un module dans Node.js

delete require.cache[require.resolve('./path-of-file')];
require('./path-of-file');
Inquisitive Ibex