Meteor offers thousands of community packages that you can use while developing your app.
You can check the official Meteor package server here. Just search for the package you need and add it in the command prompt window. If, for example, you want to add http package to your app, you can do it by running the following code −
C:\Users\username\Desktop\meteorApp>meteor add http
A similar principle can be used to remove packages −
C:\Users\username\Desktop\meteorApp>meteor remove http
You can update the package running the following code −
C:\Users\username\Desktop\meteorApp>meteor update http
You can also check what packages your current application is using.
C:\Users\username\Desktop\meteorApp>meteor list
If a package has : in the name, it means that it is a community package, while the ones without the prefix are maintained by the Meteor Development group.
C:\Users\username\Desktop\meteorApp>meteor add http
C:\Users\username\Desktop\meteorApp>meteor add cfs:http-methods