Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 526
Jonathan de M. Avatar asked Jun 19 '13 03:06

Jonathan de M.


People also ask

Where are meteor packages installed?

Typically they are in your home folder in the . meteor directory: /home/username/. meteor/packages.

How do I search for installed packages in Linux?

Open the terminal app. For remote server log in using the ssh command: ssh user@centos-linux-server-IP-here. Show information about all installed packages on CentOS, run: sudo yum list installed. To count all installed packages run: sudo yum list installed | wc -l.

How do I cancel my meteor package?

meteor remove package For a list of the packages that your application is currently using, run meteor list . This removes the package entirely. To continue using the package, but remove its version constraint, use meteor add .


3 Answers

Update: as of meteor 1.0, the command is now

meteor list
like image 158
Clark Pan Avatar answered Oct 22 '22 17:10

Clark Pan


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

like image 26
Clark Ritchie Avatar answered Oct 22 '22 16:10

Clark Ritchie


meteor list

does the trick for meteor 1.0

like image 6
Vasily Bezruchkin Avatar answered Oct 22 '22 16:10

Vasily Bezruchkin