1.1.0 • Published 3 years ago
oranjekruis v1.1.0
🔶 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'
    //     }
    // ]
});