Meteor: How to list the installed packages
Asked Answered
L

11

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.

Lessard answered 19/6, 2013 at 3:19 Comment(0)
P
129

Update: as of meteor 1.0, the command is now

meteor list
Protagonist answered 19/6, 2013 at 3:28 Comment(7)
Why is this not in the --help!Nidanidaros
@Nidanidaros Actually this have an help, try meteor help list you'll find it. :)Dieselelectric
Which is basically the same as doing: cat .meteor/packagesDoriedorin
looks like using is not valid anymore. latest version of meteor spews error.Penitence
you dont need --usingGermanize
@Bjørn Bråthen : Difference between cat and list is that list will provide version number of the package as well, whereas cat will just display contents of the packages fileThionic
another way is to look at .meteor/versions since it will display also packages installed as dependencies from the packages you choose. Useful tip to remember for debugging.Infante
C
26

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

Catina answered 3/9, 2014 at 16:43 Comment(0)
N
6
meteor list

does the trick for meteor 1.0

Necaise answered 27/11, 2014 at 19:8 Comment(3)
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 you will be able to comment on any post.Mas
@jubobs yes this provides an answerTop
@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.Necaise
R
3

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

Request answered 29/1, 2016 at 10:32 Comment(0)
E
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.

Expedition answered 24/7, 2015 at 19:7 Comment(1)
Can you view it with your second favourite text editor?Bosh
B
1

meteor list Works fine for the latest meteor version, 1.2

Buller answered 28/4, 2016 at 8:4 Comment(0)
E
1

Simple Way to Found packages Folder

.meteor/packages

Open this file on Editor. Listed All Packages

Encephalo answered 14/3, 2017 at 9:25 Comment(0)
L
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

Loireatlantique answered 5/9, 2017 at 7:23 Comment(0)
A
0

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

Antoine answered 6/9, 2014 at 2:47 Comment(0)
D
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.

Delaminate answered 29/4, 2016 at 17:19 Comment(0)
C
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

Cheroot answered 17/12, 2016 at 21:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.