Installing Packages in Meteor
Understand the process of installing Atmosphere and npm packages in Meteor. This lesson guides you through adding external code libraries like Bootstrap to your Meteor application, enhancing development efficiency and UI styling.
We'll cover the following...
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
...