2.0.2 • Published 7 years ago

npm-installed v2.0.2

Weekly downloads
741
License
MIT
Repository
github
Last release
7 years ago

npm-installed Build Status

Find programs installed by npm

Install

$ npm install npm-installed

Usage

const npmInstalled = require('npm-installed');

npmInstalled('imagemin').then(function (path) {
	console.log(path);
	//=> /home/sirjohndoe/.npm-packages/bin/imagemin
});

npmInstalled.sync('imagemin');
//=> /home/sirjohndoe/.npm-packages/bin/imagemin

License

MIT © Kevin Mårtensson