JSPM

github-organization-members

1.1.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q38073F
  • License MIT

Returns the public members of the user supplied organistation listed on Github.

Package Exports

  • github-organization-members

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (github-organization-members) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

github-organization-members ·

license version AppVeyor downloads

Install Package

npm i github-organization-members

Quick Start

const gom = require('github-organization-members');

const orgName = "Moduate";
gom.getPublicUsersFromOrg(orgName, (error, members) => {
  if(error) {
    console.log(error);
  }
  console.log(members);
});