Book Image

Meteor Cookbook

By : Isaac Strack
Book Image

Meteor Cookbook

By: Isaac Strack

Overview of this book

Table of Contents (19 chapters)
Meteor Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

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 you have added to your project...