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
Meteor Cookbook
Meteor Cookbook

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

eBook
R$49.99 R$196.99
Paperback
R$245.99
Subscription
Free Trial
Renews at R$50p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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

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 a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

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
R$50 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
R$500 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 R$25 each
Feature tick icon Exclusive print discounts
R$800 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 R$25 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total R$ 669.97
Building Single-page Web Apps with Meteor
R$150.99
Meteor Cookbook
R$245.99
Node.js By Example
R$272.99
Total R$ 669.97 Stars icon
Banner background image

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 included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.