Once Again On Script Loaders
It's a long story I would like to summarize in few concrete points ... Three Ways To Include A Script In Your Page First of all, you may not need loaders at all. Most likely you may need an easy to go and cross platform build process, and JSBuilder is only one of them. The Most Common Practice This way lets users download and visualize content first but it lets developers start the JS logic ASAP as well without mandatory need to set DOMContentLoaded or onload event. <!doctype html> <head> <!-- head content here --> </head> <body> <!-- body content here --> <script src="app.minzipped.js">/* app here */</script> </body> </html> The "May Be Better" Practice I keep saying that a web application that does not work without JavaScript should never be accessed by a user. As example, if a form won't submit without JavaScript what's the point to show it befor...