Is there a Javascript cron implementation somewhere that I am missing?

I am aware of synchronization issues in Javascript, how it is not exactly on / off using milliseconds, etc., but I need something to at least try to do browser-based scheduling.

As for the features, I think something is in accordance with the planning patterns described here: http://www.sauronsoftware.it/projects/cron4j/manual.php#p02

Is there anything there? I carried out Google searches and did not find any implementation worthless.

+4
source share
4 answers

It seemed to me that I would quickly bounce it - obviously, this is not a worthy production code yet. Take a look .

+3
source

Jumping my own code here, but I'm busy developing cron.js and its readiness for general use.

+1
source

As long as js engines live inside the browser, I donโ€™t think there is a lot of drive for such an opportunity. Now .. if you made a js engine server ...

0
source

Take a look at scheduler.codeeffects.com. I donโ€™t know how this works, but it has a js based interface, so their scheduling mechanism is also based on js. Just trying to help :)

0
source

Source: https://habr.com/ru/post/1303849/


All Articles