nmz.me

This is my public notebook.


Project maintained by nicomz Hosted on GitHub Pages — Theme by mattgraham

Yarn and JHipster.

After installing JHipster using yarn, the jhipster command was not found. In fact, all binaries installed globally by yarn are missing. It happens because the bin directory for yarn is not in path. Solution: Add the following lines to .profile file

export PATH="$PATH:~/.yarn/bin"