I have a problem here. How do i run job at certain date time in the future using Agenda like node-scheduler do. Based on https://www.npmjs.com/package/node-schedule, node-schedule have cron-style scheduling method. So it is easier for me to extract date from my input. I have read Agenda documentation https://github.com/rschmukler/agenda#agenda-events, it says Agenda uses Human Interval for specifying the intervals.
How can i do this?

If you have a future date, you can convert this to number of
daysfrom today or even number ofsecondsas below and then use the same withagendacron jobThen create
agendajob and schedule it withdaysFromNowcalculated above,If you want to schedule it at particular time in the future, you can calculate the seconds as below,
Then create
agendajob and schedule it withsecsFromNowcalculated above,