Find Where Yarn Is Installing Binaries
When you run a command like:
$ yarn global add create-react-appYarn is going to install any needed dependencies including any binaries. So, where is Yarn putting these binaries?
Let's ask:
$ yarn global bin
/Users/jbranchaud/.asdf/installs/nodejs/10.15.3/.npm/binThis is where it is located on my machine. You'll want to run it on your own machine because the exact location will depend on the specifics of your installation.
See the docs for more details.
Last updated
Was this helpful?