Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Getting Started with Meteor.js JavaScript Framework - Second Edition
Getting Started with Meteor.js JavaScript Framework - Second Edition

Getting Started with Meteor.js JavaScript Framework - Second Edition: Learn to develop powerful web applications in minutes with Meteor

eBook
NZ$29.99 NZ$33.99
Paperback
NZ$42.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Getting Started with Meteor.js JavaScript Framework - Second Edition

Chapter 2. Reactive Programming…It's Alive!

As we learned in Chapter 1, Setup and Installation, Meteor operates on a reactive programming model. This means that your templates aren't only concerned with displaying data, but they are also listening for changes to that data so that they can "react" to those changes. These areas of data where the templates look for changes are called reactive contexts.

We will now start developing a Lending Library application, lay the framework for future chapters, and use Meteor's built-in reactive model to track and propagate changes to our application to all clients that are listening.

In this chapter, you will learn about:

  • Creating your first real application
  • Using reactive programming to track and automatically update changes
  • Exploring and testing changes made to your data from multiple browser windows

Creating the Lending Library

There are two kinds of people in this world—those who remember who they lent something to and those who buy a lot of stuff twice. If you're one of the people who is on a first-name basis with your UPS delivery driver, this application is for you!

Using Meteor, we're going to build a Lending Library. We'll keep track of all our stuff and who we lent it to, so that the next time we can't remember where we put our linear compression wrench, we can simply look up who we lent it to last and get it back from them.

And when that same friend says, "Are you sure you lent it to me?", you can say, "Yeah, STEVE, I'm sure I lent it to you! I see you're enjoying your digital cable, thanks to my generous lending of said linear compression wrench. Why don't you go find it so that I too can enjoy the benefits of digital cable in my own home!"

Okay, okay, maybe STEVE forgot too. Maybe he's a dirty liar, and he sold...

Creating a reaction

Following the creation of our basic template and collection, and with Meteor putting our lists collection into the reactive context, we can now proceed to watch the reactive programming model in action.

Navigate to our Lending Library page at http://localhost:3000/ and open the browser console window.

In the console, enter the following command:

> lists.insert({Category:"Fraggles"});

You will instantly see the page update. Note that, this time, the full page didn't refresh! This is because, under the hood, Meteor is tracking changes to our reactive context (in this case, the lists collection) and the template is being updated immediately after a change is made.

Let's make a few more changes. To do this, enter the same Fraggles command again:

> lists.insert({Category:"Fraggles"});

Just as before, a new Fraggles button will instantly appear:

Creating a reaction

But, we have too many Fraggles categories now. There are a lot of Fraggles, but unless you're...

Multiple clients

Good things should be shared. Meteor gets this, and as we're about to see for ourselves, the reactive programming model allows us to share updates in real time across multiple clients.

With your Chrome web page still open to http://localhost:3000/, open a new browser tab and navigate to the same page.

Tip

If you really want to get fancy, you can conduct this same experiment with multiple browsers (Firefox, Opera, or Safari). Each session will be live and reactive!

You now have two clients open, which is simulating the application being open by different people, at different locations, with different computers. Meteor's reactive model allows you to treat all clients in the same manner, and a change made by one will be propagated to all the others.

With your eyes on the new second browser, type the following command into the console of browser #1:

> lists.insert({Category:"Vinyl Records"})

You will notice that the change propagates to both browsers, without...

Summary

In this chapter, you successfully created the framework for your new Meteor application. You saw firsthand how quickly a new project can be created, and you created database and template functionality with just a few lines of code. You saw live HTML and reactive programming in action, and you are now ready to go even deeper into the Meteor engine. You've conquered the tip of the iceberg, my friend. Take a break, have a cold one, and get ready for even more Meteor awesomeness!

Left arrow icon Right arrow icon

Description

This book is for developers or students who have a working knowledge of JavaScript and HTML, and want to learn how to quickly develop full-stack web applications using pure JavaScript.

Who is this book for?

This book is for developers or students who have a working knowledge of JavaScript and HTML, and want to learn how to quickly develop full-stack web applications using pure JavaScript.

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jun 30, 2015
Length: 138 pages
Edition : 1st
Language : English
ISBN-13 : 9781785282270
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jun 30, 2015
Length: 138 pages
Edition : 1st
Language : English
ISBN-13 : 9781785282270
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just NZ$7 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just NZ$7 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total NZ$ 172.97
Getting Started with Meteor.js JavaScript Framework - Second Edition
NZ$42.99
Object-Oriented JavaScript - Second Edition
NZ$80.99
NW.js Essentials
NZ$48.99
Total NZ$ 172.97 Stars icon

Table of Contents

8 Chapters
1. Setup and Installation Chevron down icon Chevron up icon
2. Reactive Programming…It's Alive! Chevron down icon Chevron up icon
3. Why Meteor Rocks! Chevron down icon Chevron up icon
4. Templates Chevron down icon Chevron up icon
5. Data – Meteor Style! Chevron down icon Chevron up icon
6. Application Structure – Client, Server, and Public (oh my!) Chevron down icon Chevron up icon
7. Packaging and Deploying Chevron down icon Chevron up icon
Index Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Full star icon Half star icon 4.2
(5 Ratings)
5 star 40%
4 star 40%
3 star 20%
2 star 0%
1 star 0%
David Nunez Aug 14, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This is an excellent introduction to Meteor. The book is short yet the content covered here is more than adequate. The author is a good teacher as well, incrementally introducing the reader to new concepts with a playful tone and he seems adept at anticipating the thought patterns and confusion points for beginners.Sometimes, computer science authors write their books too much like their code itself, defining all their concepts up front (the way they would declare and set values for all the variables at the beginning of a function) and then expanding upon each piece in the section that follows. This pattern is not best for the reader: it's hard to get into a rhythm with the author and results in having to go back to the earlier portions of the book or chapter to re-read the way the author define their concepts as they finally start to sink in. I personally appreciate it when an author tries instead to establish a good flow and introduces ideas dynamically, at the time when each idea can be most appropriately introduced and can be reinforced most effectively by the surrounding content. This author seems to understand this pattern better than most and it makes him a good teacher for it.What I enjoyed most about this book was the structure of the content, chapter by chapter. The book begins by trying to get you up and running with Meteor and building a simple application as quickly as possible, and its amazing how simple it is to get to that point! It isn't until the third chapter that you go through the necessary high-level discussions of the Meteor framework, the needs it addresses, the history of MVC-like patterns in web development, etc., and in most computer science books I believe you'd be reading through this stuff up-front, anxiously waiting to get started and see it in action. But this book has such a nice flow to it because discussions like these come at the appropriate time and have a reinforcing effect rather than leaving you feeling like "okay, get on with it and let's see some code". The latter half of the book then builds upon the earlier, simple application with more realistic looking UI design, C.R.U.D. operation implementation, authentication, robust configuration of role-based event broadcasting and database access, and finally to deployment. So you can definitely say the content here is covered from basics to basic tour of high-level concepts.It's hard to be overwhelmed by what seems to be a glut of JavaScript frameworks out there, but after reading this book I think it would be even harder for one not to feel extremely excited by this one. Meteor is a full-stack JS framework and streamlines many high-level patterns and technologies that you'd end up implementing by hand in many other frameworks (or at least be mildly challenged to gather them all together with existing modules). Web socket integration (in a publish/subscribe pattern) between your data-store (by default is setup for you in Meteor as MongoDb) and client-side JS, the ability to operate offline, single-command project creation, single-command deployment, automatic file watching (live reload), easy 3rd party package integration (again, with a single command), and isomorphic JS are all available to you out-of-the-box with Meteor. I suppose Angular is following suite with Firebase, but - as the author mentions in the final chapter - you can even integrate Meteor with Angular or React if you prefer them as front-end clients. It's almost as if Meteor can be the glue that holds together many scattered technologies and techniques you've learned over the years in JS and allow you to focus instead on development.
Amazon Verified review Amazon
Elliott Porter Aug 12, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I'd heard a great deal about Meteor and discovered this new book from Packt. Such a fantastic introduction to an amazing technology. As the previous review explains an understanding of JavaScript is advisable but even without it this book provides a fantastic introduction to Meteor. I am still stunned at how effective this technology is and its ease of implementation. The book gets you up and running very quickly. I'm already planning to use Meteor within projects for my clients. This is another great addition to my ever growing Packt library. Highly recommended
Amazon Verified review Amazon
rkk Aug 12, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
I bought this book a few weeks ago and can thoroughly recommend the content. If you're familiar with other frontend frameworks such as AngularJS then this book will be really useful for you. There's a really good introduction as to how Meteor works as both a back-end and frontend framework - with a simple to understand MongoDB tutorial that'll get you working with databases really quickly.Further into the book there are some more complex tutorials where a more advanced knowledge of javascript would be beneficial to understand the loops, functions and checks that take place for validation of data etc. I would recommend this book in combination with other Node.js books to really get a grasp on what is becoming one of the most popular up and coming languages in the web industry.
Amazon Verified review Amazon
Bharat C. Ruparel Aug 12, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
I have Isaac strack's Packtpub video on Meteor, his Meteor Cookbook and now this, so I am a bit familiar with his teaching style :)There is no question that Issac knows his stuff well. This book is very good like his video and the cookbook. However, it is not titled appropriately. There is beginning material and then more advanced material mixed together. I have been working with Meteor for the last few months so I am a bit familiar with it. Without that knowledge, it would be difficult climb for a beginner as far as this book is concerned. But if you use this book in combination with other books and materials available on the web, then it is quite useful.As far as the code that comes with the book, it works fine with a few minor glitches here and there. But I am experienced enough in Meteor to work through them. I am not sure if a rank beginner can do that. My constructive criticism of the code is that it can be refactored quite a bit to make it clearer, but may be the author had a page count limit on the book or something similar.
Amazon Verified review Amazon
rdagger Oct 09, 2015
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
I think the subtitle Learn to develop powerful web applications in minutes with Meteor is a bit of a stretch. This is a brief introduction to Meteor. It will get you started, but you can get a comparable intro if you just go to the Meteor website and do their free To-do app tutorial. It would be difficult to find a comprehensive paper book because the platform is evolving so rapidly. The best resource I’ve found so far is the eBook by Discover Meteor which has been frequently updated although it is currently only Iron Router and Blaze (no Flow or React).
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.