We should figure out a way to provide a global require() in DEV mode in the browser console.
It could be implemented as a webpack plugin (everything is a plugin in webpack right?)
It could work like this:
require('moduleName') just worksrequire('./full/path/from/root') is the only wayStill not too bad!
What is the use case for this? So I can go to my dev tools console and access a module? That would be helpful, I'd like to dig into it.
Yea, it's for debugging individual modules when something specific doesn't quite work, and you want to call it directly.

This is freaking handy indeed!
You can try it out on facebook.com fyi, it's super useful for debugging
Closing for a lack of a specific proposal. It鈥檚 not clear how this would work with relative imports so unless somebody prototypes this, I likely won鈥檛 be working on it.
Most helpful comment
You can try it out on facebook.com fyi, it's super useful for debugging