@alexvipond/mulago
v0.0.0
Published
Dataset of organizations in the Mulago Foundation's portfolio
Downloads
9
Maintainers
Readme
Mulago Foundation Portfolio
This repo distributes a dataset of organizations in the Mulago Foundation's portfolio. It's a nice, interesting, sufficiently complex dataset to use in demos, practice, etc.
Data was collected from the Mulago Foundation's public website, and all data belongs to the Mulago Foundation.
Usage
Via npm
npm i @alexvipond/mulago-foundation-portfolio
To import detailed organization profiles:
// Import detailed organization profiles
import { portfolio } from '@alexvipond/mulago-foundation-portfolio'
// Or, for simpler use cases, reduce bundle size by just importing
// organization names:
import { names } from '@alexvipond/mulago-foundation-portfolio'
Fetching
You can fetch the data from the src
directory:
async function getMulagoFoundationPortfolio() {
const response = await fetch('https://raw.githubusercontent.com/AlexVipond/mulago-foundation-portfolio/main/src/portfolio.json'),
json = await response.json()
return json
}