Rapid Prototyping with JS

Retired

This book is no longer available for sale.

Rapid Prototyping with JS

Agile JavaScript Development

About the Book

UPDATE: This books is available at https://gumroad.com/l/rpjs.

Rapid Prototyping with JS: Agile JavaScript Development is a hands-on book which introduces you to agile JavaScript web and mobile software development using the latest cutting-edge front-end and back-end technologies including:

Practical examples include building multiple versions of the Chat app:

  • jQuery + Parse.com JS REST API
  • Backbone and Parse.com JS SDK
  • Backbone and Node.js
  • Backbone and Node.js + MongoDB

The Chat application has all the foundation of a typical web/mobile application: fetching data, displaying it, submitting new data. Other examples include:

  • jQuery + Twitter RESP API “Tweet Analyzer”
  • Parse.com “Save John”
  • Node.js “Hello World”
  • MongoDB “Print Collections”
  • Derby + Express “Hello World”
  • Backbone.js “Hello World”
  • Backbone.js “Apple Database”
  • Monk + Expres.js “REST API Server”

This book will save you many hours by providing the hand-picked and tested colletion of quick start guides. RPJS has practical examples that allow to spend less time learning and more time building your own applications. Prototype fast and ship code that matters!

Buy Rapid Prototyping with JS on Leanpub for $14.87 or read this and four other JavaScript and Node.js books for $4.87/mo on AnyWhereLib.com.

More info: rpjs.co

This book is also available in print as paperback copy.

Download the free Intro to Backbone.js chapter

Jump to the full Table of Contents

Code examples: github.com/azat-co/rpjs

About the Author

Azat Mardan
Azat Mardan

Update: you can check out my books and buy them at http://webapplog.com/books.

Azat Mardan has over 12 years of experience in web, mobile and software development. With a Bachelor’s Degree in Informatics and a Master of Science in Information Systems Technology degree, Azat possesses deep academic knowledge as well as extensive practical experience.

Recently, he has worked as an engineer at the curated social media news aggregator website, Storify.com (acquired by LiveFyre). Before that, Azat worked as a CTO/co-founder at Gizmo — an enterprise cloud platform for mobile marketing campaigns, and has undertaken the prestigious 500 Startups business accelerator program. Previously, he was developing mission-critical applications for government agencies in Washington, DC: National Institutes of Health, National Center for Biotechnology Information,Federal Deposit Insurance Corporation, and Lockheed Martin. Azat is a frequent attendee at Bay Area tech meet-ups and hackathons (AngelHack hackathon ’12 finalist with team FashionMetric.com).

In addition, Azat teaches technical classes at General Assembly and Hack Reactor, pariSOMA and Marakana (acquired by Twitter) to much acclaim.

In his spare time, Azat writes about technology on his blog: webAppLog.com which is number one in “express.js tutorial” Google search results. Azat is also the author of Express.js Guide, Rapid Prototyping with JS and Oh My JS!

Table of Contents

    • What Readers Say
    • Rapid Prototyping with JS on the Internet
    • Acknowledgment
    • Introduction
      • Why RPJS?
      • What to Expect
      • Who This Book is For
      • What This Book is Not
      • Prerequisites
      • How to Use the Book
      • Examples
      • Notation
      • Terms
    • About the Author
  • I Quick Start
    • 1. Basics
      • 1.1 Front-End Definitions
        • 1.1.1 Bigger Picture
        • 1.1.2 HyperText Markup Language
        • 1.1.3 Cascading Style Sheets
        • 1.1.4 JavaScript
      • 1.2 Agile Methodologies
        • 1.2.1 Scrum
        • 1.2.2 Test-Driven Development
        • 1.2.3 Continuous Deployment and Integration
        • 1.2.4 Pair Programming
      • 1.3 Back-End Definitions
        • 1.3.1 Node.js
        • 1.3.2 NoSQL and MongoDB
        • 1.3.3 Cloud Computing
        • 1.3.4 HTTP Requests and Responses
        • 1.3.5 RESTful API
    • 2. Setup
      • 2.1 Local Setup
        • 2.1.1 Development Folder
        • 2.1.2 Browsers
        • 2.1.3 IDEs and Text Editors
        • 2.1.4 Version Control Systems
        • 2.1.5 Local HTTP Servers
        • 2.1.6 Database: MongoDB
        • 2.1.7 Other Components
          • 2.1.7.1 Node.js Installation
          • 2.1.7.2 JS Libraries
          • 2.1.7.3 LESS App
      • 2.2 Cloud Setup
        • 2.2.1 SSH Keys
        • 2.2.2 GitHub
        • 2.2.3 Windows Azure
        • 2.2.4 Heroku
        • 2.2.5 Cloud9
  • II Front-End Prototyping
    • 3. jQuery and Parse.com
      • 3.1 Definitions
        • 3.1.1 JavaScript Object Notation
        • 3.1.2 AJAX
        • 3.1.3 Cross-Domain Calls
      • 3.2 jQuery
      • 3.3 Twitter Bootstrap
      • 3.4 LESS
        • 3.4.1 Variables
        • 3.4.2 Mixins
        • 3.4.3 Operations
      • 3.5 Example of using third-party API (Twitter) and jQuery
      • 3.6 Parse.com
      • 3.7 Chat with Parse.com Overview
      • 3.8 Chat with Parse.com: REST API and jQuery version
      • 3.9 Pushing to GitHub
      • 3.10 Deployment to Windows Azure
      • 3.11 Deployment to Heroku
      • 3.12 Updating and Deleting of Messages
    • 4. Intro to Backbone.js
      • 4.1 Setting up Backbone.js App from Scratch
        • 4.1.1 Dependencies
      • 4.2 Working with Collections
      • 4.3 Event Binding
      • 4.4 Views and Subviews with Underscore.js
      • 4.5 Refactoring
      • 4.6 AMD and Require.js for Development
      • 4.7 Require.js for Production
      • 4.8 Super Simple Backbone Starter Kit
    • 5. Backbone.js and Parse.com
      • 5.1 Chat with Parse.com: JavaScript SDK and Backbone.js version
      • 5.2 Deploying Chat to PaaS
      • 5.3 Enhancing Chat
  • III Back-End Prototyping
    • 6. Node.js and MongoDB
      • 6.1 Node.js
        • 6.1.1 Building “Hello World” in Node.js
        • 6.1.2 Node.js Core Modules
        • 6.1.3 Node Package Manager
        • 6.1.4 Deploying “Hello World” to PaaS
        • 6.1.5 Deploying to Windows Azure
        • 6.1.6 Deploying to Heroku
      • 6.2 Chat: Run-Time Memory Version
      • 6.3 Test Case for Chat
      • 6.4 MongoDB
        • 6.4.1 MongoDB Shell
        • 6.4.2 MongoDB Native Driver
        • 6.4.3 MongoDB on Heroku: MongoHQ
        • 6.4.4 BSON
      • 6.5 Chat: MongoDB Version
    • 7. Putting It All Together
      • 7.1 Different Domain Deployment
      • 7.2 Changing Endpoints
      • 7.3 Chat Application
      • 7.4 Deployment
      • 7.5 Same Domain Deployment
    • 8. BONUS: Webapplog Articles
      • 8.1 Asynchronicity in Node
        • 8.1.1 Non-Blocking I/O
        • 8.1.2 Asynchronous Way of Coding
      • 8.2 MongoDB Migration with Monk
      • 8.3 TDD in Node.js with Mocha
        • 8.3.1 Who Needs Test-Driven Development?
        • 8.3.2 Quick Start Guide
      • 8.4 Wintersmith — Static Site Generator
        • 8.4.1 Getting Started with Wintersmith
        • 8.4.2 Other Static Site Generators
      • 8.5 Intro to Express.js: Simple REST API app with Monk and MongoDB
        • 8.5.1 REST API app with Express.js and Monk
      • 8.6 Intro to Express.js: Parameters, Error Handling and Other Middleware
        • 8.6.1 Request Handlers
        • 8.6.2 Parameters Middleware
        • 8.6.3 Error Handling
        • 8.6.4 Other Middleware
        • 8.6.5 Abstraction
      • 8.7 JSON REST API server with Node.js and MongoDB using Mongoskin and Express.js
        • 8.7.1 Test Coverage
        • 8.7.2 Dependencies
        • 8.7.3 Implementation
        • 8.7.4 Conclusion
      • 8.8 Node.js MVC: Express.js + Derby Hello World Tutorial
        • 8.8.1 Node MVC Framework
        • 8.8.2 Derby Installation
        • 8.8.3 File Structure
        • 8.8.4 Dependencies
        • 8.8.5 Views
        • 8.8.6 Main Server
        • 8.8.7 Derby Application
        • 8.8.8 Launching Hello World App
        • 8.8.9 Passing Values to Back-End
    • Conclusion and Further Reading
      • Conclusion
      • Further Reading
        • JavaScript resources and free ebooks
        • JavaScript books
        • Node.js resources and free ebooks
        • Node.js books
        • Interactive online classes and courses
        • Startup books and blogs

The Leanpub 60 Day 100% Happiness Guarantee

Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.

Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.

You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!

So, there's no reason not to click the Add to Cart button, is there?

See full terms...

80% Royalties. Earn $16 on a $20 book.

We pay 80% royalties. That's not a typo: you earn $16 on a $20 sale. If we sell 5000 non-refunded copies of your book or course for $20, you'll earn $80,000.

(Yes, some authors have already earned much more than that on Leanpub.)

In fact, authors have earnedover $13 millionwriting, publishing and selling on Leanpub.

Learn more about writing on Leanpub

Free Updates. DRM Free.

If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).

Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.

Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.

Learn more about Leanpub's ebook formats and where to read them

Write and Publish on Leanpub

You can use Leanpub to easily write, publish and sell in-progress and completed ebooks and online courses!

Leanpub is a powerful platform for serious authors, combining a simple, elegant writing and publishing workflow with a store focused on selling in-progress ebooks.

Leanpub is a magical typewriter for authors: just write in plain text, and to publish your ebook, just click a button. (Or, if you are producing your ebook your own way, you can even upload your own PDF and/or EPUB files and then publish with one click!) It really is that easy.

Learn more about writing on Leanpub