78

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.

Jonathan de M.
  • 9,721
  • 8
  • 47
  • 72

11 Answers11

129

Update: as of meteor 1.0, the command is now

meteor list
Scott Stensland
  • 26,870
  • 12
  • 93
  • 104
Clark Pan
  • 6,027
  • 1
  • 22
  • 18
26

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

Clark Ritchie
  • 285
  • 4
  • 7
6
meteor list

does the trick for meteor 1.0

  • This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post - you can always comment on your own posts, and once you have sufficient [reputation](http://stackoverflow.com/help/whats-reputation) you will be able to [comment on any post](http://stackoverflow.com/help/privileges/comment). – jub0bs Nov 27 '14 at 20:47
  • 2
    @jubobs *yes this provides an answer* – rpax Nov 27 '14 at 23:28
  • @Jubops my answer is correct. I have meteor 1.0 version and meteor list command lists the packages used by an application. I don't have enough reputation to post comment for starter's post. – Vasily Bezruchkin Nov 29 '14 at 03:31
3

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

Daniel Du
  • 41
  • 2
1

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.

Koushik Roy
  • 61
  • 1
  • 5
1

meteor list Works fine for the latest meteor version, 1.2

user3807691
  • 1,284
  • 1
  • 11
  • 29
1

Simple Way to Found packages Folder

.meteor/packages

Open this file on Editor. Listed All Packages

Aboobakkar P S
  • 796
  • 1
  • 8
  • 28
1

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

Dheeraj Balodia
  • 252
  • 7
  • 36
0

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

ralphie
  • 132
  • 1
  • 9
0

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.

0

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

Rei
  • 31
  • 4