Hacker News new | ask | show | jobs
by ntkachov 5274 days ago
If you have so many Javascript snippets that you need another javascript snippet to organize them you may want to think about how your developing your application and what your application means to the user.

Heavy Javascript on the client side either means your writing a full featured web app or the entire website is clientside in javascript. The former probably has performance penalties that make this a bad idea. The later, IMHO, is just bad.

The only useful thing I can think of with this is the fact that it can serve up a custom load of libraries all bundled and gziped in one file. But to that extent I can run a small script on my computer that will do that and then upload it to my server rather than having to cross domain half of my Javascript.