really-need
really-need copied to clipboard
Node require wrapper with options for cache busting, pre- and post-processing
Hello, thanks a lot for this library. I am evaluating it to see if I could use for a mutation testing library I am writing, I've setup a basic scenario...
Use https://github.com/VictorBjelkholm/autochecker to test every available Node version
Seems the internal code has changed. Need to at least allow some features to work, like busting the require cache
Functions that aren't defined as top-level properties of [`args`](https://github.com/bahmutov/really-need#args) are not making through to the loaded module source. So for example, this works fine: ``` javascript // another-require.js require('something'); //...
Describe-it https://github.com/bahmutov/describe-it seems to try to overwrite the require again. Need to detect and avoid multiple overwrites
Looking for a way to pass default options, applied to all require invocations (unless overridden by per-invocation options). So, I'd like to do things like this: require = require('really-need')({... some...
I'm thinking about ways one might incorporate [ramda-t](https://github.com/raine/ramda-t) in development process without too much hassle. One of those I've considered is conditionally overwriting require in non-production environment so that if...