1.1.0 • Published 1 year ago

oranjekruis v1.1.0

Weekly downloads
-
License
GPL-3.0-or-later
Repository
github
Last release
1 year ago

🔶 Oranje Kruis API

This library uses Puppeteer to fetch Oranje Kruis certificates and diplomas. Originally created by Ruben Uijtdewilligen for EHBO Vereniging Roosendaal.

Usage

There is just one function, getCerts, and it takes two arguments. The first is the certificate number and the second is the certificate holder's last name without prefix.

import { getCerts } from '../index.js';
getCerts('12345678', 'Smith').then((certs) => {
    // [
    //     {
    //         name: 'Eerste Hulp',
    //         type: 'Diploma',
    //         received: '11-11-2011',
    //         expires: '11-11-2022'
    //     }
    // ]
});