2.0.0 • Published 6 years ago

getpackages v2.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Fetch the information for packages inside the npm registry

NPM

Usage

// Create our instance
var getter = require('getpackages').create({
	onlyLatest: true,           // optional (defaults to `true`), accepts a boolean, `true` will fetch information only for the latest version, `false` wil fetch information for all versions
	log: console.log           // optional (defaults to `null`), accepts a function that accepts the arguments: level, message... 
});

// Fetch the data on these github repositories
getter.fetchPackagesByNames(['bevry/getpackages'], function(err, entries){
	console.log(err, entries);

	// Fetch all the repo data on these github users/organisations
	getter.fetchPackagesByKeyword('docpad-plugin', function(err, entries){
		console.log(err, entries);

		// Get the combined listing
		console.log(getter.getEntries());
	});
});

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Discover the release history by heading on over to the HISTORY.md file.

These amazing people are maintaining this project:

No sponsors yet! Will you be the first?

These amazing people have contributed code to this project:

Discover how you can contribute by heading on over to the CONTRIBUTING.md file.

Unless stated otherwise all works are:

and licensed under: