Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Meteor Cookbook
Meteor Cookbook

Meteor Cookbook: Build elegant full-stack web applications with Meteor, the JavaScript framework that's redefining web development

eBook
$24.99 $35.99
Paperback
$43.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
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
Table of content icon View table of contents Preview book icon Preview Book

Meteor Cookbook

Chapter 2. Customizing with Packages

In this chapter, we will cover the following topics:

  • Adding Meteor packages
  • Removing Meteor packages
  • Discovering new packages with Atmosphere
  • Creating a multipage application with Iron Router
  • Building a custom package
  • Using npm modules
  • Publishing custom packages to Atmosphere

Introduction

The package system in Meteor makes your development life much easier. It also speaks to one of Meteor's core principles—modular development. If you want to use the entire default Meteor stack, great! If you don't like a particular part and want to swap it out with a third-party package, great! It's completely up to you. Meteor allows you to quickly add and remove functionality, use the latest code shared by others, and create your own reusable code segments. This chapter will provide you with the recipes needed to take full advantage of the Meteor packages system.

Adding Meteor packages

The core Meteor Development Group (MDG) have developed over 140 packages for you to use. These packages provide features and functionality ranging from simple display tweaks, to fully integrated account management. Not only are these packages useful, but they're extremely easy to add to your project. In addition to the core MDG packages, there are hundreds of third-party packages available, all of which are free and could be just as easily added. This recipe will show you how to add Meteor packages to your project.

Getting ready

You will need Meteor installed and have a project created. Any project will do. You should also have a terminal window open and navigate to the root folder of your project, for example, if the name of your project is packagesTest, located in the ~/Documents/MeteorProjects folder, you would enter the following command in a terminal window:

$ cd ~/Documents/MeteorProjects/packagesTest

How to do it...

Let's install the fastclick package...

Removing Meteor packages

Removing Meteor packages is just as easy as adding them. This recipe will show you how to quickly remove a Meteor package.

Getting ready

You will need Meteor installed and have a project created. You should also have a terminal window open and navigate to the root folder of your project. For example, if the name of your project is packagesTest, located in the ~/Documents/MeteorProjects folder, enter the following command in a terminal window:

$ cd ~/Documents/MeteorProjects/packagesTest

How to do it…

Let's remove the insecure Meteor package. In your terminal window, enter the following command:

$ meteor remove insecure

This will remove the insecure package.

How it works…

The meteor remove [package name] command will direct Meteor to look for the named package in your project declaration files and remove the declaration and source files for the package from your project.

There's more…

It's sometimes very helpful to check and see which packages...

Discovering new packages with Atmosphere

Meteor is an emerging platform, growing in popularity every day. The Meteor community is coming up with new packages and integrations with existing JavaScript libraries on almost a daily basis. Because the core Meteor team doesn't have time to test and apply every new package made by the community, a package registry, with a streamlined installation process, has been created. This package registry is called Atmosphere. Atmosphere has a clean, simple UI, which allows you to search for, rate, and discover new packages by popularity. This recipe will show you how to use Atmosphere to find and implement both Meteor and third-party packages.

Getting ready

There's nothing really to do here, but you'll definitely want to have Meteor installed and a project created to start using the packages listed on Atmosphere right away!

How to do it…

To discover new packages with Atmosphere, proceed with the following steps:

  1. In a browser, navigate to...

Creating a multipage application with Iron Router

Iron Router is an extremely useful Atmosphere package. It allows you to quickly and easily add multiple server pages to your Meteor project. This recipe will show you how to configure your project to use Iron Router.

Getting ready

You need to have Meteor installed. You will also need a blank Meteor project (see the Setting up your project file structure recipe in Chapter 1 , Optimizing Your Workflow).

Finally, you will need to add the Iron Router package to your Meteor project. You can reference the Adding Meteor packages recipe found previously in this chapter, or enter the following command in your terminal window, in the root folder of your project:

$ meteor add iron:router

How to do it…

We are going to create a very simple example of multiple pages and we will use a fresh blank project to do so.

  1. First, set up the route paths for the multiple pages. Create a subfolder called router in the both subfolder of your project. This can be...

Building a custom package

As you become more familiar with Meteor, you will want to start creating your own custom package, which consolidates the code you may find useful in multiple projects. This recipe will walk you through the basics of creating your own personal Meteor package.

Getting ready

The only thing you need for this recipe is Meteor and a text editor.

How to do it…

We will create a package that will allow us to easily write to the console in not only the client web console, but also in the server terminal console.

  1. To create a new baseline package, open a terminal window and navigate to where you would like your package to reside. Once there, execute the following command:
    $ meteor create --package [myMeteorID]:testpack
    

    Make sure you replace [myMeteorID] with your own Meteor Developer Account ID or with the ID of the Meteor organization you belong to, for example (and for the rest of this chapter), we will use the packtmeteor organization. So our command will look like the...

Introduction


The package system in Meteor makes your development life much easier. It also speaks to one of Meteor's core principles—modular development. If you want to use the entire default Meteor stack, great! If you don't like a particular part and want to swap it out with a third-party package, great! It's completely up to you. Meteor allows you to quickly add and remove functionality, use the latest code shared by others, and create your own reusable code segments. This chapter will provide you with the recipes needed to take full advantage of the Meteor packages system.

Adding Meteor packages


The core Meteor Development Group (MDG) have developed over 140 packages for you to use. These packages provide features and functionality ranging from simple display tweaks, to fully integrated account management. Not only are these packages useful, but they're extremely easy to add to your project. In addition to the core MDG packages, there are hundreds of third-party packages available, all of which are free and could be just as easily added. This recipe will show you how to add Meteor packages to your project.

Getting ready

You will need Meteor installed and have a project created. Any project will do. You should also have a terminal window open and navigate to the root folder of your project, for example, if the name of your project is packagesTest, located in the ~/Documents/MeteorProjects folder, you would enter the following command in a terminal window:

$ cd ~/Documents/MeteorProjects/packagesTest

How to do it...

Let's install the fastclick package as an example...

Left arrow icon Right arrow icon

Description

This book is meant for developers of all experience levels looking to create mobile and full-stack web applications in JavaScript. Many of the simple recipes can easily be followed by less-experienced developers, while some of the advanced recipes will require extensive knowledge of existing web, mobile, and server technologies. Any application or enterprise web developer looking to create full-stack JavaScript-based apps will benefit from the recipes and concepts covered in this book.

Who is this book for?

This book is meant for developers of all experience levels looking to create mobile and full-stack web applications in JavaScript. Many of the simple recipes can easily be followed by less-experienced developers, while some of the advanced recipes will require extensive knowledge of existing web, mobile, and server technologies. Any application or enterprise web developer looking to create full-stack JavaScript-based apps will benefit from the recipes and concepts covered in this book.

What you will learn

  • Create and deploy userfriendly, touchenabled web applications
  • Rapidly build robust, responsive user interfaces
  • Integrate any npm/Node package in minutes
  • Leverage isomorphic JavaScript to develop fullstack applications
  • Publish your own reusable custom packages
  • Quickly implement user accounts compatible with Facebook, Google, Twitter, and more
  • Convert external API streams into reactive, selfupdating infographics
  • Secure and optimize your Mongo data collections
Estimated delivery fee Deliver to Ukraine

Economy delivery 10 - 13 business days

$6.95

Premium delivery 6 - 9 business days

$21.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 27, 2015
Length: 364 pages
Edition : 1st
Language : English
ISBN-13 : 9781783280292
Languages :
Tools :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
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
Estimated delivery fee Deliver to Ukraine

Economy delivery 10 - 13 business days

$6.95

Premium delivery 6 - 9 business days

$21.95
(Includes tracking information)

Product Details

Publication date : May 27, 2015
Length: 364 pages
Edition : 1st
Language : English
ISBN-13 : 9781783280292
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 $5 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 $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 119.97
Node.js By Example
$48.99
Meteor Cookbook
$43.99
Building Single-page Web Apps with Meteor
$26.99
Total $ 119.97 Stars icon

Table of Contents

13 Chapters
1. Optimizing Your Workflow Chevron down icon Chevron up icon
2. Customizing with Packages Chevron down icon Chevron up icon
3. Building Great User Interfaces Chevron down icon Chevron up icon
4. Creating Models Chevron down icon Chevron up icon
5. Implementing DDP Chevron down icon Chevron up icon
6. Mastering Reactivity Chevron down icon Chevron up icon
7. Using Client Methods Chevron down icon Chevron up icon
8. Integrating Third-party Libraries Chevron down icon Chevron up icon
9. Securing Your Application Chevron down icon Chevron up icon
10. Working with Accounts Chevron down icon Chevron up icon
11. Leveraging Advanced Features Chevron down icon Chevron up icon
12. Creating Useful Projects 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.4
(5 Ratings)
5 star 60%
4 star 20%
3 star 20%
2 star 0%
1 star 0%
Jebin Aug 14, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
The book is an absolute cookbook to learn Meteor recipes. If you are looking for book full of examples to learn how to do most of the things in Meteor, this is a great book. I would suggest the readers to have expectations of reading a cookbook and not whole app development guide. The book covers pretty nicely what it is supposed to be. Learn the core concepts of Meteor from Meteor site and develop some fun projects. Read this book then and you will appreciate it definitely.
Amazon Verified review Amazon
Michael C. Nov 13, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Quick read to get started quickly.
Amazon Verified review Amazon
JN Oct 15, 2015
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Really great book, ended up reading it cover to cover.
Amazon Verified review Amazon
Jason DeVine Aug 20, 2015
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
I found this book to be a very good introduction to programming meteor. While it's not a deep dive into any area of the platform, it does do a good job of covering the basics of building an application. Well worth the $$.
Amazon Verified review Amazon
Lawrence Baldwin Jul 12, 2015
Full star icon Full star icon Full star icon Empty star icon Empty star icon 3
After working through the online tutorial on Meteor, I wanted to learn more, so I bought this book and worked through it. I had mixed feelings about this book. On the plus side, it does teach a number of useful things about Meteor that are not covered in the online tutorial. Learning about Atmosphere, the library of Meteor add-ons, seeing some examples of using Iron Router for created multi-page apps, a more detailed walk-through of developing iOS apps, and simply walking through lots of examples one by one are all very helpful. On the minus side, I found far too much of the book concerned with integrating Meteor with other packages, without enough focus on the basics (e.g. how to do more complex queries). In order to keep the examples short and simple, the book takes endless shortcuts, such as using Bootstrap to avoid adding a few lines of CSS, and it has little or no naming conventions, and in general does not set a good example for coding. It gives the impression that it is all about quick and dirty prototyping. It includes essentially nothing on debugging, testing, etc. If I plan to do any actual Meteor development, I will certainly need to buy another book--this one doesn't cover enough of the essentials.The longest example in the book, "Creating a coloring book with the Canvas element," I was unable to get to work, even after downloading the code from the Packt website. There were error messages that came up, and this may have been my error, but the book provided me with no help in figuring out what had gone wrong, and I found nowhere to submit a question (other than his suggestion I post to Stack Overflow).On the other hand, I did enjoy Strack's breezy style. Being introduced to lots of packages, some of which I was unfamiliar with, had some interest. I certainly understand Meteor far better than I did before beginning the book (not hard to do). I wanted to like it better than I did. Perhaps if I had read a different Meteor book before reading this one, I would have appreciated more the specific things it brought forward.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela