1.0.7 • Published 3 years ago

npm-searcher v1.0.7

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

npm-searcher

  • NPM package that gets information about npm packages and other info from the NPM API

Installation from NPM

npm i npm-searcher
  • search(package_name) - Get a npm package
    • package_name: (REQUIRED) npm package name

Examples

(Using await)

const npm = require('npm-searcher')

async function getNpm() {
    const res = await npm.search('express')
    console.log(res) // All information related to the express package
    console.log(res.name) // express
}
getNpm()

(Using .then function)

const npm = require('npm-searcher')

npm.search('express').then(res => {
    console.log(res) // All information related to the express package
    console.log(res.name) // express
})

(Validation)

const npm = require('npm-searcher')

npm.search('express').then(res => {
    if (res) {
        console.log(res) // All information related to the express package
        console.log(res.name) // express
    } else {
        console.log("package not found");
    }
})

Contributing

© npm-searcher, 2021 | abdooo9 (abdooo9.dev@gmail.com)