Starting an ASP.NET MVC 4 project. Is it necessary to use RequireJS if I'm using bundling?
- by SCS
If RequireJS makes it so that multiple js files are combined into a
single main.js file, is it essentially the same as ASP.NET's script
bundling functionality?
Would the only bonus of using RequireJS in addition to bundling be the ability to have certain scripts be loaded according to RequireJS configuration?
I'm very new to both bundling and RequireJS, but after doing some reading, it seems like bundling takes care of multiple requests to load several js files. Are there any other things I might be missing out on with regards to using RequireJS with bundling?