How to make asdf recognize globally installed npm modules
November 9, 2020
After installing a global module with npm (npm install -g my-cool-module
), when using asdf, you might then get command not found: my-cool-module
when you try to use it. The solution is to run asdf reshim nodejs
. After that, you should be able to use your cool new module.