Javascript Application Book
- by Jormundir
Can anyone recommend a good book on Javascript module/application development. I'm a Software Engineer, so I don't need all the intro to programming stuff. What I'm really looking for is:
How do you bundle the html/css/javascript together so that you can make one include that will load the whole application. I.e.:
<div id="myapplication"></div>
...
...
<script src="myapplication.js">
Design patterns are always welcome.
I've already read Javascript the good parts, and online guides, but it's hard to find a comprehensive guide/tutorial for specifically this. There's a lot of good "this is a javascript application" and "this is a scalable framework", but I haven't had any luck with "This is how you build a javascript application, including the html and css, and this is how you deliver it nicely".
I'm building a small application to start, so I'm not interested in scalability and large-scale development practices, just a nice and comprehensive guide to get me off the ground.