Let me lay out my situation:
1. Extracting data from example.com at regular intervals
2. Storing it in a Mongodb database
3. Subscribing to this data in a Meteor App.
Since I'm still learning Meteor, here's my plan:
1. Develop a scraper script for example.com using Python or PHP.
2. Set up a cronjob to run the script at specified intervals.
3. Store the extracted data in Mongodb.
Is it feasible to accomplish this entirely using Meteor without relying on Python or PHP? How can I manage a task that needs to be executed every X minutes?