decache (Delete Cache) lets you delete modules from node.js require() cache; useful when testing your modules/projects.
Replacement for node.js require that that always reads the required module again from disk. It actually automatically uncaches it before requiring it again for you. This allows changes to become live without restarting node. It is like a simple hot requir
decache (Delete Cache) lets you delete modules from node.js require() cache; useful when testing your modules/projects.
decache (Delete Cache) lets you delete modules from node.js require() cache; useful for dev servers