How can I access the crontab file with Node.js?

I am currently developing an Electron app and need it to look into the crontab file and parse it.

How can Node.js (or something else in Electron) access the main crontab file and read it?

I looked into the cron-parser library but it is only able to read cron-formatted strings, not access the file.

Thanks in advance.