← back to Cypress Awards
backend/src/utils/nonprofitUrls.js
91 lines
// Sample list of non-profit organizations that may have cy pres pages
// This is a starting point - expand with more organizations
const nonprofitUrls = [
// Legal Aid & Civil Rights
'https://bettzedek.org',
'https://www.aclu.org',
'https://www.splcenter.org',
'https://www.nclej.org',
'https://www.naacpldf.org',
'https://www.nationalimmigrationproject.org',
'https://www.publiccounsel.org',
// Consumer Protection
'https://www.consumerreports.org',
'https://www.nclc.org',
'https://www.citizen.org',
// Environmental
'https://www.nrdc.org',
'https://www.sierraclub.org',
'https://www.earthjustice.org',
'https://www.edf.org',
// Technology & Privacy
'https://www.eff.org',
'https://www.epic.org',
'https://www.accessnow.org',
'https://www.cdt.org',
// Education
'https://www.edtrust.org',
'https://www.publiceducation.org',
// Healthcare
'https://www.familiesusa.org',
'https://www.healthlaw.org',
// Housing
'https://www.nhlp.org',
'https://nlihc.org',
// Labor & Employment
'https://www.nelp.org',
'https://www.workingfamilies.org',
// Women's Rights
'https://www.nwlc.org',
'https://www.legalmomentum.org',
// Disability Rights
'https://www.dredf.org',
'https://www.autismspeaks.org',
// LGBTQ Rights
'https://www.lambdalegal.org',
'https://www.glad.org',
// Criminal Justice Reform
'https://www.innocenceproject.org',
'https://www.vera.org',
// Animal Welfare
'https://www.aspca.org',
'https://www.humanesociety.org',
// Arts & Culture
'https://www.americansforthearts.org',
// Veterans
'https://www.veteranslegalinstitute.org',
// Children & Youth
'https://www.childrensdefense.org',
'https://www.firstfocus.org',
// Seniors
'https://www.justiceinaging.org',
// Community Development
'https://www.cdfi.org',
// Multiple Focus Organizations
'https://www.legalaidatwork.org',
'https://www.legalservicesnyc.org',
'https://www.publicjustice.net',
'https://www.pilnet.org',
];
module.exports = nonprofitUrls;