croner
croner copied to clipboard
Trigger functions or evaluate cron expressions in JavaScript or TypeScript. No dependencies. Most features. Node. Deno. Bun. Browser.
Bumps [eslint](https://github.com/eslint/eslint) from 8.19.0 to 8.21.0. Release notes Sourced from eslint's releases. v8.21.0 Features 7b43ea1 feat: Implement FlatESLint (#16149) (Nicholas C. Zakas) 92bf49a feat: improve the key width calculation in...
Bumps [rollup](https://github.com/rollup/rollup) from 2.76.0 to 2.77.2. Release notes Sourced from rollup's releases. v2.77.2 2022-07-27 Bug Fixes Avoid a rendering failure when mixing outputs with inlined and non-inlined dynamic imports (#4589)...
Bumps [uglify-js](https://github.com/mishoo/UglifyJS) from 3.16.2 to 3.16.3. Release notes Sourced from uglify-js's releases. v3.16.3 Features improve elimination of return statements (0207b46d70caeecf332572ed69c0791bcfd733ae, c8d98f4787f402c283cb1b3a31d7ce325d209281) merge common tail of if statements (d89f0965aac64aa6b3a08c10950ae8eba486b29e, 3dcf098468e08e9809079e1d9b5c68ac7e2ea980, 902292f776d4223e3b603729813e201328dd1b49,...
Bumps [jsdoc](https://github.com/jsdoc/jsdoc) from 3.6.10 to 3.6.11. Changelog Sourced from jsdoc's changelog. 3.6.11 (July 2022) Updates dependency versions to make JSDoc compatible with Node.js 12.0.0 and later. Commits dc48aa6 3.6.11 cccfd3d...
Bumps [c8](https://github.com/bcoe/c8) from 7.11.3 to 7.12.0. Release notes Sourced from c8's releases. v7.12.0 7.12.0 (2022-07-19) Features use process.stdout.columns for reporter maxCols (#409) (7731574) Changelog Sourced from c8's changelog. 7.12.0 (2022-07-19)...
Maybe this is possible and I just can't find it in the docs. I'd like to handle SIGTERM gracefully like this: 1. Receive SIGTERM 2. Cancel all future cron runs...
This doesn't do anything: ```typescript Cron('* * * * * *', { timezone: 'America/Anchorage' }, () => { console.log('test') }) ``` This works: ```typescript Cron('* * * * * *',...
**Describe the bug** When scheduling a function with croner on a specific timezone CPU load ramps up on UNIX systems (Linux/Macos), on Windows it functions normally. **To Reproduce** ```ts Cron("0...
**Describe the bug** Hi, first thanks a ton for the library. We have been (ab)using it a lot. I think we have come across what I think is a bug...
Hi, For long long time, I’ve been looking for a timer or cron job solution that can automatically correct time drift without requiring manual resets. In particular, it’s important that...