Meteor: How to list the installed packages

I'm starting with Meteor, and I'd like to know how to list the installed packages.

meteor list would only list the available packages in the registry.

Edit: Since meteor 0.9.0.1 meteor list lists the available packages in the project.

33328 次浏览

Update: as of meteor 1.0, the command is now

meteor list

I think it's just meteor list now (as of 0.9.0.1).

You can also use as of version 0.9.0.1 to search package: meteor search nameofpackage

meteor list

does the trick for meteor 1.0

You can check by typing meteor list on the command line on your project directory. Or, Browse into .meteor folder on your project directory and view the packages file with your favorite text editor.

You can also look into the ./meteor/packages file, which is a plain text file, all installed packages are listed in it.

meteor list Works fine for the latest meteor version, 1.2

An advantage with using meteor list compared to look in .meteor/packages is that the version numbers is included in the list command and * marks outdated versions.

on command line windows or terminal type

  1. meteor list. This command will list all the packages that you add to your project.
  2. meteor list-platforms.Lists all of the platforms that have been explicitly added to your project.

On linux cd ~/meteor/packages or on windows search in .meteor/packages.and run command line meteor list If you haven't installed meteor-tools type meteor add windows:meteor-tool . You should read Meteor command line

Simple Way to Found packages Folder

.meteor/packages

Open this file on Editor. Listed All Packages

If you want to list all the packages then you can go to .meteor/packages there you'll find all the packages installed.

For reference, you can check this

enter image description here