2.3 KiB
2.3 KiB
@pushrocks/smarttime
handle time in smart ways
Availabililty and Links
Status for master
Usage
Use TypeScript for best in class instellisense.
Smarttime offers smart ways to deal with time.
class CronManager
This class provides scheduling of functions with a cron syntax
import { CronManager } from '@pushrocks/smarrtime';
const cronManagerInstance = new CronManager();
cronManagerInstance.addConrjob('* * * * * *', async () => {
console.log('hello'); // will log 'hello' to console once every second;
})
cronManagerInstance.start();
class ExtendedDate
This class offers static functions to create zone specific JavaScript dates from European formated time strings.
import { ExtendedDate } from '@pushrocks/smarttime'
const myDate: Date = ExtendedDate.fromEuropeanDate('8.6.2018')
For further information read the linked docs at the top of this readme.
MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy