Where is the meteor installed on a Mac?

I installed a meteorite and created the application after tut http://docs.meteor.com/#quickstart

In finder, I was looking for a meteorite, but I can not find it.

+6
source share
2 answers

/usr/local/meteor - you can find this in the installation script from http://install.meteor.com/

+7
source

As a more general solution, the bash shell type command does this for any command:

  $ type meteor meteor is /usr/local/bin/meteor 

For other shells, see this excellent answer in superuser .

+8
source

Source: https://habr.com/ru/post/913187/


All Articles