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.
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.
Update: as of meteor 1.0, the command is now
meteor list
meteor help list
you'll find it. :) –
Dieselelectric cat .meteor/packages
–
Doriedorin cat
and list
is that list
will provide version number of the package as well, whereas cat
will just display contents of the packages file –
Thionic meteor list
does the trick for meteor 1.0
You can also look into the ./meteor/packages file, which is a plain text file, all installed packages are listed in it.
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.
meteor list Works fine for the latest meteor version, 1.2
Simple Way to Found packages Folder
.meteor/packages
Open this file on Editor. Listed All Packages
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
You can also use as of version 0.9.0.1 to search package: meteor search nameofpackage
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.
on command line windows or terminal type
meteor list
. This command will list all the packages that you add to your project.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
© 2022 - 2024 — McMap. All rights reserved.