Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are meteor's installed packages located?

Tags:

I installed twitter bootstrap using meteor add bootstrap. I want to look at the bootstrap css files, but I can't find them anywhere.

I have looked in my application folder, and I've looked at many folders in the .meteor folder. In app-name/.meteor/local/build/programs/server/packages I came across bootstrap.min.js, but no bootstrap.min.css anywhere.

There's nothing in my app-name/.meteor/local/build/programs/client/packages folder.

Does anybody know where the bootstrap css file(s) is located?

Edit: I looked in my generated html page, and found <link href="/c06ffbf557927aa81d97be1421cb5a36cd8fd88f.css" rel="stylesheet"></link>

I found that file in app-name/.meteor/local/build/programs/client/c06ffbf557927aa81d97be1421cb5a36cd8fd88f.css. It is bootstrap, but why is it called that random string, and not bootstrap.css? Is this a bootstrap only problem, or do other packages have this too?

like image 904
Azeirah Avatar asked May 01 '14 14:05

Azeirah


People also ask

Where are meteor packages located?

The actual files for a given version of an Atmosphere package are stored in your local ~/. meteor/packages directory.

What is Meteor NPM?

What is Meteor? Meteor is a full-stack JavaScript platform for developing modern web and mobile applications. Meteor includes a key set of technologies for building connected-client reactive applications, a build tool, and a curated set of packages from the Node. js and general JavaScript community.


2 Answers

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

/home/username/.meteor/packages.   

If you are usining meteorite packages as well, they find their way to

/home/username/.meteorite/packages.   

They are symlinked into individual projects with the 'meteor add' action to avoid having to have a version of every package installed for every project you run.

like image 79
meawoppl Avatar answered Oct 11 '22 07:10

meawoppl


For Windows it's at

C:\Users\[YourUser]\AppData\Local\.meteor\packages\ 
like image 22
Dmitry Efimenko Avatar answered Oct 11 '22 08:10

Dmitry Efimenko