By Wesley Gnahs
A visual cron job manager for Strapi
released April 13, 2025
npm install @innovato/strapi-plugin-cronManage and monitor cron jobs from Strapi admin panel.

[npm|yarn|bun] add @innovato/strapi-plugin-cron./config/plugins.ts file with the following config:export default () => ({
'strapi-plugin-cron': {
enabled: true,
},
})[npm|yarn|bun] run buildIf you want to maintain your cron job script files within the parent project and track them with a VCS, you should place them in a location relative to <your-strapi-project>/src/extensions/strapi-plugin-cron/.
The script file should be a .js module which exports an async function:
module.exports = async ({ strapi, cronJob }) => {
};The function has access to strapi global variable and the relevant cronJob object.
The script snippet maintained via the Cron plugin dashboard has a direct top-level access to those parameters.
A supplementary repository for development is available here @mjnoach/strapi--strapi-plugin-cron
Share your work with the community and get it listed in the Strapi ecosystem for everyone to discover and use.
Submit
