Reddit Reddit reviews High Performance JavaScript: Build Faster Web Application Interfaces

We found 4 Reddit comments about High Performance JavaScript: Build Faster Web Application Interfaces. Here are the top ones, ranked by their Reddit score.

Computers & Technology
Books
Web Development & Design
Web Development & Design Programming
JavaScript Programming
High Performance JavaScript: Build Faster Web Application Interfaces
Check price on Amazon

4 Reddit comments about High Performance JavaScript: Build Faster Web Application Interfaces:

u/magenta_placenta · 3 pointsr/web_design

Pro JavaScript Design Patterns

http://www.amazon.com/JavaScript-Design-Patterns-Recipes-Problem-Solution/dp/159059908X

JavaScript Patterns

http://www.amazon.com/JavaScript-Patterns-Stoyan-Stefanov/dp/0596806752/ref=sr_1_1?s=books&ie=UTF8&qid=1303912468&sr=1-1

High Performance JavaScript

http://www.amazon.com/Performance-JavaScript-Faster-Application-Interfaces/dp/059680279X/ref=sr_1_3?s=books&ie=UTF8&qid=1303912468&sr=1-3

Object Oriented JavaScript

http://www.amazon.com/Object-Oriented-JavaScript-high-quality-applications-libraries/dp/1847194141/ref=sr_1_1?s=books&ie=UTF8&qid=1303912517&sr=1-1

JavaScript: The Good Parts

http://www.amazon.com/JavaScript-Good-Parts-Douglas-Crockford/dp/0596517742/ref=sr_1_4?s=books&ie=UTF8&qid=1303912536&sr=1-4

Everyone loves to swing from Crockford's nuts, but I found this book a little hard to read. I lack a CS background and I fully admit I need to re-read this book as last time I read it was beginning of 2009

JavaScript: The Definitive Guide 6th Edition

http://www.amazon.com/JavaScript-Definitive-Guide-David-Flanagan/dp/0596805527/ref=sr_1_1?s=books&ie=UTF8&qid=1303912643&sr=1-1

I just ordered this yesterday, the 5th Edition is the book that really kicked it off for me back in 2005.

jQuery is cool and all (as are all the other libs) but you should try to learn core JavaScript as much as possible.

u/YuleTideCamel · 2 pointsr/learnprogramming

Honestly I don't think there is a need for this since there are a few excellent javascript books. But they are hide to find among the many many crappy books out there.

JavaScript: The Good Parts is pretty much the most important Javascript out there. It basically shows all the quirks of the language and gives tips on what to avoid and best practices.

JavaScript Patterns continues and goes into more depth and covers more advanced usage.

High Performance JavaScript goes into great depths on how you can make your js code more efficient and fast.

u/WittyOriginalName · 1 pointr/InternetIsBeautiful

Well the number one rule is to try to touch the html/css as little as possible. Store references to html nodes, pull nodes out of layout if you're going to modify them heavily, use timeouts if you have a long running operation, use requestanimationframe for dom manipulation, etc.

There are more, but those are the big ones off the top of my head. You want to STAY in the javascript space as much as possible.

There are some great articles about making the javascript itself performant, but I found this very short book to be really helpful: http://www.amazon.com/Performance-JavaScript-Faster-Application-Interfaces/dp/059680279X

It's a couple years old but absolutely still relevant.