smarttime/readme.md
2019-06-17 16:54:39 +02:00

2.3 KiB

@pushrocks/smarttime

handle time in smart ways

Status for master

build status coverage report npm downloads per month Known Vulnerabilities TypeScript node JavaScript Style Guide

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

repo-footer