Node.js reloading modules solution
In node.js, if you make change to a module's exported variable, the changes will not propagate to another module that already imported it.
So what solution can we do to go around this "caching" of javascript files. The solution is to use exported functions to read and provide those values.
Recent Comments