I want to make a service in nodejs that will perform some task for different users in different time. I have some idea about node-corn. But it do task in fixed time for one user i guess. Can i write any servic for multiple user in different time
const cron = require('node-cron');
cron.schedule("* 1 * * * *", function() {
console.log("---------------------");
console.log("Running Cron Job every one Hours");
});