Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where does meteor stores its packages?

Tags:

meteor

I have a meteor 1.0 app. I've added a bunch of packages, for example: meteor add kevohagan:ramda. But I cannot find it anywhere. I can't even find it on my system.

In my project:

$> meteor list
kevohagan:ramda   0.1.2  A practical functional library for Javascript programmers.
meteor-platform   1.2.0  Include a standard set of Meteor packages in your app
...

$> ls packages
ls: packages: No such file or directory

$> mdfind ramda.js # file added by the package
# no results

Where are they ?

like image 357
Benjamin Crouzier Avatar asked Mar 19 '23 01:03

Benjamin Crouzier


1 Answers

If you add a package via meteor add author:pkg it will be added to the meteor installation (e.g. ~/.meteor/packages); here you can find different versions of the package. In your project home, the package name will be added to the .meteor/packages file.

Later, if run your project, the package will be added to the build directory (and of course only one version can be found here).

like image 59
Steffo Avatar answered Mar 27 '23 03:03

Steffo