Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tobiasbueschel/harvard-student-organizations
🎓 Get Harvard student organizations
https://github.com/tobiasbueschel/harvard-student-organizations
Last synced: 23 days ago
JSON representation
🎓 Get Harvard student organizations
- Host: GitHub
- URL: https://github.com/tobiasbueschel/harvard-student-organizations
- Owner: tobiasbueschel
- License: mit
- Created: 2017-04-12T23:11:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-05-01T04:20:48.000Z (over 4 years ago)
- Last Synced: 2024-09-18T05:08:20.370Z (2 months ago)
- Language: JavaScript
- Homepage: https://tonicdev.com/npm/harvard-student-organizations
- Size: 11.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# harvard-student-organizations
[![travis build](https://img.shields.io/travis/tobiasbueschel/harvard-student-organizations.svg?style=flat-square)](https://travis-ci.org/tobiasbueschel/harvard-student-organizations)
[![codecov coverage](https://img.shields.io/codecov/c/github/tobiasbueschel/harvard-student-organizations.svg?style=flat-square)](https://codecov.io/gh/tobiasbueschel/harvard-student-organizations)
[![version](https://img.shields.io/npm/v/harvard-student-organizations.svg?style=flat-square)](http://npm.im/harvard-student-organizations)
[![downloads](https://img.shields.io/npm/dm/harvard-student-organizations.svg?style=flat-square)](http://npm-stat.com/charts.html?package=harvard-student-organizations)
[![MIT License](https://img.shields.io/npm/l/harvard-student-organizations.svg?style=flat-square)](http://opensource.org/licenses/MIT)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)## Installation
This package is distributed via [npm](https://www.npmjs.com/package/harvard-student-organizations):
```bash
$ npm install --save harvard-student-organizations
```## Usage
#### Node.js
```javascript
const studentOrgs = require('harvard-student-organizations');
const allStudentOrgs = studentOrgs.all;
const randomStudentOrg = studentOrgs.random();
const threeRandomStudentOrgs = studentOrgs.random(3);
```**Response:**
```json
{
"name": "Computer Society (HCS)"
}
```#### Browser
```html```