I have decided to start using RequireJS for projects and I am confused on when it is best to use RequireJS and when it is not.
For example, I have a small site that uses around 4-6 scripts on each page. I am currently concatenating all scripts into one minified script. Would it make sense to not do this and instead load them with RequireJS?
I understand using RequireJS for large web apps, but what I am in the air about is whether or not it makes sense for smaller sites as well.