Starting an ASP.NET MVC 4 project. Is it necessary to use RequireJS if I'm using bundling?

Posted by SCS on Stack Overflow See other posts from Stack Overflow or by SCS
Published on 2012-10-25T19:33:37Z Indexed on 2012/10/26 17:02 UTC
Read the original article Hit count: 142

Filed under:
|
|
  • 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?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about asp.net-mvc