Awesome
get-pkgs
Get the package.json for an array of repos from the npm registry, optionally filtering properties using glob patterns.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install
Install with npm:
$ npm install --save get-pkgs
Usage
const getPkgs = require('get-pkgs');
// takes a callback
getPkgs(['assemble', 'verb'], function(err, pkgs) {
console.log(pkgs);
});
// or returns a promise
getPkgs(['assemble', 'verb'])
.then(pkgs => console.log(pkgs))
.catch(console.error);
About
<details> <summary><strong>Contributing</strong></summary>Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
</details> <details> <summary><strong>Running Tests</strong></summary>Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
</details>
<details>
<summary><strong>Building docs</strong></summary>
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
</details>
Related projects
You might also be interested in these projects:
- get-first-commit: Returns a git repository's first commit as a JavaScript object. | homepage
- get-pkg: Get the package.json for a project from npm. | homepage
- github-base: Low-level methods for working with the GitHub API in node.js/JavaScript. | homepage
Author
Jon Schlinkert
License
Copyright © 2018, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.8.0, on December 08, 2018.