atmosphere-package-url

Get the repository URLs associated with one or more Meteor Atmosphere package names


Keywords
meteor, atmosphere, package, url, repo, repository, resolve
License
MIT
Install
bower install atmosphere-package-url

Documentation

atmospherePackageURL

Get the repository URLs associated with one or more Meteor Atmosphere package names

Author: Matthew Hasbach
License: MIT
Copyright: Matthew Hasbach 2015

Param Type Description
packages string | Array.<string> One or more Meteor Atmosphere package names
cb atmospherePackageURLCallback A callback to be executed after the repository URL(s) are collected

Example

atmospherePackageURL(['stevezhu:lodash', 'suxez:jquery-serialize-object'], function(err, packages) {
    if (err) { console.error(err); }
    console.log(packages);
});

atmospherePackageURL~atmospherePackageURLCallback : function

The atmospherePackageURL callback

Kind: inner typedef of atmospherePackageURL

Param Type Description
err Object | null An error object if an error occurred
packages Array One or more repository URLs