Socket
Socket
Sign inDemoInstall

@pushrocks/smarttime

Package Overview
Dependencies
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pushrocks/smarttime

handle time in smart ways


Version published
Weekly downloads
81
decreased by-10%
Maintainers
1
Weekly downloads
 
Created
Source

@pushrocks/smarttime

handle time in smart ways

  • npmjs.org (npm package)
  • gitlab.com (source)
  • github.com (source mirror)
  • docs (typedoc)

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

FAQs

Package last updated on 18 Jun 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc