How to create your own cron in Total.js?
This tutorial describes how to create your own cron in Total.js framework. It will work everywhere.
How to create own cron with help of Total.js?
Total.js can be used anywhere, you just need to know how to use it. This tutorial describes how to create custom cron using Total.js framework.
Cron in a web application
In a web application we can choose whether we want the cron to run in same thread or in a new thread (worker).
Cron executed in the same thread
- create a definition file e.g.
cron.js
- we use
F.schedule()
for creating the job
Cron executed as a worker (new thread)
- create a definition file e.g.
cron.js
- create a worker file e.g.
cron.js
- we use
F.schedule()
for creating timing
definitions/cron.js:
workers/cron.js:
Cron as a server service
- create a script e.g.
cron.js
- run it
$ node cron.js
Other posts from Total.js Platform
- 2024-11-13Benchmarking Node.js Frameworks: selecting your framework for 2025!
- 2024-11-01October report 2024
- 2024-10-22Performance Testing: Total.js vs. NestJS
- 2024-10-01September report 2024
- 2024-09-27Total.js UI Builder: #2 designing your first interface
- 2024-09-26Total.js V5: Middlewares
- 2024-09-23Beginner Guide to Total.js UI: # 05 Client-side routing
- 2024-09-23Total.js UI #4: Data Binding (Part 2 – Practical Example)
- 2024-09-20Introduction to Total.js UI Builder: A Beginner’s Guide
- 2024-09-13Total.js v5: #06 Understanding File Routing