Javascript Application Book

Posted by Jormundir on Stack Overflow See other posts from Stack Overflow or by Jormundir
Published on 2012-11-17T22:52:28Z Indexed on 2012/11/18 5:00 UTC
Read the original article Hit count: 145

Filed under:
|
|
|
|

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.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about application