javascript on the server? You bet. Node.js is a javascript server capable of supporting scalable, high-performance web applications. Using asynchronous I/O, the server can do more than one thing at a time, a key requirement for real-time apps like chat, games, and live statistics. And since its javascript, you use the same language end to end.
Node.js in Action shows you how to build production-quality applications. Clear introductions of key concepts and example-by-example coverage take you from setup to deployment. Youll dive into asynchronous programming, data storage, and output templating, and interact with the filesystem to create non-HTTP applications like TCP/IP servers and command-line tools. Perfect for a web developer transitioning from Rails, Django, or PHP. Requires basic knowledge of javascript. No prior experience with Node.js needed.
Whats Inside
Set up Node and extensions
Grok asynchronous programming and the event loop
Examples including microblogging, IM, games, and more
About the Authors
As skilled practitioners, expert teachers and trainers, and contributors to the core framework, authors Mike Cantelon, Marc Harter, T.J. Holowaychuk, and Nathan Rajlich represent the best of the Node.js development community.
Author(s): Mike Cantelon, Marc Harter, TJ Holowaychuk, Nathan Rajlich
Publisher: Manning Publications
Year: 2013
Language: English
Commentary: early access version
Pages: 443
PART 1: NODE FUNDAMENTALS
Chapter 1: Welcome to Node.js
Chapter 2: Building a multi-room chat application
Chapter 3: Node programming fundamentals
PART 2: WEB APPLICATION DEVELOPMENT WITH NODE
Chapter 4: Buiding Node web applications
Chapter 5: Storing Node application data
Chapter 6: Testing Node applications
Chapter 7: Connect
Chapter 8: Connect’s built-in middleware
Chapter 9: Express
Chapter 10: Web application templating
Chapter 11: Deploying Node web applications
PART 3: GOING FURTHER WITH NODE
Chapter 12: Beyond web servers
Chapter 13: The Node ecosystem
APPENDIXES
Appendix A: Installing Node and community add-ons
Appendix B: Debugging Node