I'm making a Telegram bot with the node-telegram-api running on node.js. I want it to retrieve (scrape) client-side javascript values from a website.
The website is an online calendar (which data is stored in a javascript object) and the events are stored in this object's "events" attribute (which is an array).
How can node.js retrieve this array's values? In other words, can node.js "read" this website as a browser and retrieve the client-side javascript values of this website?
Thank you in advance for your help :)