1.0.1 • Published 6 years ago

npm-exists v1.0.1

Weekly downloads
29
License
MIT
Repository
github
Last release
6 years ago

npm-exists

Greenkeeper badge

check if a package exists on npm

Build Status NPM module NPM downloads

Getting Started

Install:

npm install npm-exists --save

Usage:

const exists = require('npm-exists');

exists('request')
	.then(moduleExists => {
		if (moduleExists) {
			console.log('gosh, `request` name already taken!');
		} else {
			console.log('you can register `request`');
		}
	});

// use custom registry:
exists('request', 'http://localhost:5432/')
	.then(moduleExists => {
		console.log(moduleExists);
	});

License

MIT © 2016, Andrea Parodi