/harvard-student-organizations

🎓 Get Harvard student organizations

Primary LanguageJavaScriptMIT LicenseMIT

harvard-student-organizations

travis build codecov coverage version downloads MIT License semantic-release

Installation

This package is distributed via npm:

$ npm install --save harvard-student-organizations

Usage

Node.js

const studentOrgs = require('harvard-student-organizations');
const allStudentOrgs = studentOrgs.all;
const randomStudentOrg = studentOrgs.random();
const threeRandomStudentOrgs = studentOrgs.random(3);

Response:

{
  "name": "Computer Society (HCS)"
}

Browser

<script src="https://unpkg.com/harvard-student-organizations/dist/index.umd.min.js"></script>