github-organization-members

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

Usage no npm install needed!

<script type="module">
  import githubOrganizationMembers from 'https://cdn.skypack.dev/github-organization-members';
</script>

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);
});