On Ubuntu 16.04, after running yarn global add express-generator
the command express
didn't became available.
This hapenned because the path to the binaries wasn't set. If you're using zsh, open your .zshrc
and add the following:
export PATH="$PATH:$HOME/.config/yarn/global/node_modules/.bin"