Bypass the require cache when requiring a module – works with both node and browserify
npm install fresh-requireBypass the require cache when requiring a module – works with both node and
browserify.

Where module is the name of the module you're requiring, as you would normally
pass to require. require should be your file's local require function.
To use this package properly with browserify, you need to includefresh-require/transform as a transform:
`` bash`
browserify -t fresh-require/transform ./index.js
Then you should be able to use the package as normal:
` javascript
var fresh = require('fresh-require')
var async1 = require('async')
var async2 = fresh('async', require)
``
MIT. See LICENSE.md for details.