Installing Packages in Meteor
Learn about packages and how they’re installed in MeteorJS.
We'll cover the following...
Packages
A package is code authored by someone else that provides a solution to a particular problem. Plenty of packages are available for us to use in our MeteorJS applications. We normally import packages to use alongside our code. We can use two package systems in Meteor.
Atmosphere packages
These are packages that we can search for on Atmospherejs.com. We can add an Atmosphere package to our Meteor package by typing the following command:
meteor add package_name
A package can be removed from our project using the following command:
meteor remove package_Name
...