npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

inpm

0.1.0

@hemanth

npmHomeRepoSnykSocket
Downloads:16
$ npm install inpm
DailyWeeklyMonthlyYearly

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");
    }
});