I have a node server. Inside the server there is a function for clean up which I want to run very 100ms or so. How should I achieve this outcome?I have thought of making it a cronjob using the
npm-cron
package to run this function as a background job. Though configuring a cronjob for sub-second intervals seems not possible.