inpm
v0.1.0
Published
Checks if the given module name is present in npm registry.
Downloads
135
Readme
inpm in npm?
Checks if the given module name is present in npm registry.
Example:
var $ = require('inpm');
$('foooof', function(found){
if (found) {
console.log("Found in npm registry");
} else {
console.log("Not found in npm registry");
}
});
