Meteor: How to list the installed packages

node.jsMeteorNpmMeteorite

node.js Problem Overview


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.

node.js Solutions


Solution 1 - node.js

Update: as of meteor 1.0, the command is now

meteor list

Solution 2 - node.js

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

Solution 3 - node.js

meteor list

does the trick for meteor 1.0

Solution 4 - node.js

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

Solution 5 - node.js

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.

Solution 6 - node.js

meteor list Works fine for the latest meteor version, 1.2

Solution 7 - node.js

Simple Way to Found packages Folder

> .meteor/packages

Open this file on Editor. Listed All Packages

Solution 8 - node.js

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

Solution 9 - node.js

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

Solution 10 - node.js

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.

Solution 11 - node.js

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJonathan de M.View Question on Stackoverflow
Solution 1 - node.jsClark PanView Answer on Stackoverflow
Solution 2 - node.jsClark RitchieView Answer on Stackoverflow
Solution 3 - node.jsVasily BezruchkinView Answer on Stackoverflow
Solution 4 - node.jsDaniel DuView Answer on Stackoverflow
Solution 5 - node.jsKoushik RoyView Answer on Stackoverflow
Solution 6 - node.jsuser3807691View Answer on Stackoverflow
Solution 7 - node.jsAboobakkar P SView Answer on Stackoverflow
Solution 8 - node.jsDheeraj BalodiaView Answer on Stackoverflow
Solution 9 - node.jsralphieView Answer on Stackoverflow
Solution 10 - node.jsPelle MårtensonView Answer on Stackoverflow
Solution 11 - node.jsReiView Answer on Stackoverflow