1.0.3 • Published 6 years ago

npmjs-api v1.0.3

Weekly downloads
416
License
MIT
Repository
-
Last release
6 years ago

README V1.0.3

This npm package is created to interface with npmjs api.

Quickstart

npm i -S npmjs-api

Codes for list packages by author

const npm  = require('npmjs-api')

npm.listPackagesByAuthor('edisontkp',function(er, html) {
    if (er) {
      return console.log(er);
    }
    console.log(html);
  });

Codes for list stable spackages by author

npm.listStablePackagesByAuthor('edisontkp',function(er, html) {
    if (er) {
      return console.log(er);
    }
    console.log(html);
  });

Codes for list unstable spackages by author

npm.listUnstablePackagesByAuthor('edisontkp',function(er, html) {
    if (er) {
      return console.log(er);
    }
    console.log(html);
  });

Donation

paypal: https://www.paypal.me/edisontkp

bitcoin: 1Bm1m2doo77drdvjEykbHc5GhckXFgoXSG

ethereum: 0x0CbaCa4883954d94d40e77A2eEB0EB8DcC303d36

Author

https://edisontkp.com

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.0.1

6 years ago