Skip to content

moduate/github-organization-members

Repository files navigation

github-organization-members

license version AppVeyor downloads

This package returns a list of public users, belonging to a Github organization.

Install Package

npm i github-organization-members

Quick Start

const { getPublicUsersFromOrg } = require('github-organization-members');

const orgName = "Moduate";  // Replace Moduate with your organization name
getPublicUsersFromOrg(orgName, (error, members) => {
  if(error) {
    console.log(error);
  }
  console.log(members);
});