$ npm install resolve-globalResolve the path of a globally installed module
npm install resolve-global
npm install --global cat-names
import {resolveGlobal} from 'resolve-global';
console.log(resolveGlobal('cat-names'));
//=> '/usr/local/lib/node_modules/cat-names'
Throws if the module cannot be found.
Returns undefined instead of throwing if the module cannot be found.
Type: string
What you would use in import().