Meteor: list of reinstalled packages

I am starting with Meteor and I would like to know how to list installed packages.

meteor list will list only available packages in the registry.

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

+73
npm meteor meteorite
Jun 19 '13 at 3:19
source share
11 answers

Update : from the point of view of meteor 1.0, the team is now

 meteor list 
+120
Jun 19 '13 at 3:28
source share

I think now it is just a meteor list (starting from 0.9.0.1).

+26
Sep 03 '14 at 16:43
source share
 meteor list 

does the trick for meteor 1.0

+6
Nov 27 '14 at 19:08
source share

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

+2
Jan 29 '16 at 10:32
source share

You can verify by typing meteor list at a command prompt in the project directory. Or, go to the .meteor folder in the project directory and view the package file with your favorite text editor.

+1
Jul 24. '15 at 19:07
source share

Folder Folder "Easy Search Path"

.meteor / packages

Open this file in the editor. List all packages

+1
Mar 14 '17 at 9:25
source share

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

For reference you can check this

enter image description here

+1
Sep 05 '17 at 7:23
source share

You can also use from version 0.9.0.1 to search: meteor search nameofpackage

0
Sep 06 '14 at 2:47
source share

meteor list Works great for the latest meteor, 1.2

0
Apr 28 '16 at 8:04 on
source share

The advantage of using meteor list over look in .meteor/packages is that version numbers are included in the list command and * mark outdated versions.

0
Apr 29 '16 at 17:19
source share

in command line window or terminal type

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

In linux cd ~ / meteor / packages or in windows search in .meteor / packages.and run command line meteor list If you have not installed a meteor tool like meteor add windows:meteor-tool , you should read the Meteor command line

0
Dec 17 '16 at 21:16
source share



All Articles