|
|
|
|
|
by ndstephens
2695 days ago
|
|
I'm pretty sure that with the newer `create-react-app` version 2, it will use Yarn in your project if you have Yarn installed globally on your system. If you do, and you want to keep it there, but use npm in your created app, then add `--use-npm` when creating your project (`npx create-react-app myAppName --use-npm` Otherwise, if you don't have Yarn installed globally then it uses npm by default in your project. |
|