create-express-app
create-express-app copied to clipboard
it seems to require yarn. not falling back to npm
node v10.16.0 npm v6.14.5
~ create-expressjs-app ci -u npm my-express
Error: Command failed: yarn --version
/bin/sh: 1: yarn: not found
Does this work with npm?
Hi @barrars.
First you must install yarn globally : sudo npm install yarn -g
then run create-expressjs-app ci my-express
by default create-expressjs-app uses npm to install packages so you don't need to specify -u npm
Nice repo. I appreciate your work. I run into the same issue. I would recommend to add yarn to section Requirements and maybe as a installation step.