guys. I'm used to load libraries doing require('library') in NodeJS. Now I am in charge of the frontend in a very important project which hopefully will bring to my life the happiness I deserve.
The thing is no one has ever managed to pull a easy, ready-to-go, module loading solution.
Webpack: not reliable for development. Requires creating config files and reading a bunch of stuff no one with a good job between hands has time for. Terrible documentation and looks like it will give me a hard time when editing files (I have the browser in one screen and text editor in the other, so I edit a line and press f5 to instantly see the result, doesn't seem to be possible without another extra effort in webpack)
Browserify/RequireJS more or less the same, too much trouble
How come no one has been able to replicate the nodejs 'require' system in the browser?? I just want to do require('library') and forget about it. NO unasked config files. NO necessary extra tools. NO bullshit. Just that.