smarttime/readme.md

64 lines
3.4 KiB
Markdown
Raw Normal View History

2018-10-21 15:23:58 +00:00
# @pushrocks/smarttime
2019-04-10 09:34:30 +00:00
handle time in smart ways
2018-03-11 15:44:32 +00:00
2019-04-10 09:34:30 +00:00
## Availabililty and Links
* [npmjs.org (npm package)](https://www.npmjs.com/package/@pushrocks/smarttime)
* [gitlab.com (source)](https://gitlab.com/pushrocks/smarttime)
* [github.com (source mirror)](https://github.com/pushrocks/smarttime)
* [docs (typedoc)](https://pushrocks.gitlab.io/smarttime/)
2017-08-16 12:39:25 +00:00
## Status for master
2020-07-11 21:41:33 +00:00
Status Category | Status Badge
-- | --
GitLab Pipelines | [![pipeline status](https://gitlab.com/pushrocks/smarttime/badges/master/pipeline.svg)](https://lossless.cloud)
GitLab Pipline Test Coverage | [![coverage report](https://gitlab.com/pushrocks/smarttime/badges/master/coverage.svg)](https://lossless.cloud)
npm | [![npm downloads per month](https://badgen.net/npm/dy/@pushrocks/smarttime)](https://lossless.cloud)
Snyk | [![Known Vulnerabilities](https://badgen.net/snyk/pushrocks/smarttime)](https://lossless.cloud)
TypeScript Support | [![TypeScript](https://badgen.net/badge/TypeScript/>=%203.x/blue?icon=typescript)](https://lossless.cloud)
node Support | [![node](https://img.shields.io/badge/node->=%2010.x.x-blue.svg)](https://nodejs.org/dist/latest-v10.x/docs/api/)
Code Style | [![Code Style](https://badgen.net/badge/style/prettier/purple)](https://lossless.cloud)
PackagePhobia (total standalone install weight) | [![PackagePhobia](https://badgen.net/packagephobia/install/@pushrocks/smarttime)](https://lossless.cloud)
PackagePhobia (package size on registry) | [![PackagePhobia](https://badgen.net/packagephobia/publish/@pushrocks/smarttime)](https://lossless.cloud)
BundlePhobia (total size when bundled) | [![BundlePhobia](https://badgen.net/bundlephobia/minzip/@pushrocks/smarttime)](https://lossless.cloud)
Platform support | [![Supports Windows 10](https://badgen.net/badge/supports%20Windows%2010/yes/green?icon=windows)](https://lossless.cloud) [![Supports Mac OS X](https://badgen.net/badge/supports%20Mac%20OS%20X/yes/green?icon=apple)](https://lossless.cloud)
2017-08-16 12:39:25 +00:00
## Usage
2018-03-11 15:44:32 +00:00
2017-08-16 12:39:25 +00:00
Use TypeScript for best in class instellisense.
2018-10-21 10:12:44 +00:00
Smarttime offers smart ways to deal with time.
2019-06-17 14:54:39 +00:00
### class CronManager
2020-05-25 21:49:35 +00:00
2019-06-17 14:54:39 +00:00
This class provides scheduling of functions with a cron syntax
```typescript
import { CronManager } from '@pushrocks/smarrtime';
const cronManagerInstance = new CronManager();
2021-11-08 15:52:13 +00:00
cronManagerInstance.addCronjob('* * * * * *', async () => {
2019-06-17 14:54:39 +00:00
console.log('hello'); // will log 'hello' to console once every second;
2020-05-25 21:49:35 +00:00
});
2019-06-17 14:54:39 +00:00
cronManagerInstance.start();
```
2018-10-21 15:23:58 +00:00
2019-06-17 14:54:39 +00:00
### class ExtendedDate
2020-05-25 21:49:35 +00:00
2019-06-17 14:54:39 +00:00
This class offers static functions to create zone specific JavaScript dates from European formated time strings.
2018-10-21 15:23:58 +00:00
```TypeScript
import { ExtendedDate } from '@pushrocks/smarttime'
const myDate: Date = ExtendedDate.fromEuropeanDate('8.6.2018')
```
2020-05-25 21:49:35 +00:00
## Contribution
We are always happy for code contributions. If you are not the code contributing type that is ok. Still, maintaining Open Source repositories takes considerable time and thought. If you like the quality of what we do and our modules are useful to you we would appreciate a little monthly contribution: You can [contribute one time](https://lossless.link/contribute-onetime) or [contribute monthly](https://lossless.link/contribute). :)
2019-04-10 09:34:30 +00:00
For further information read the linked docs at the top of this readme.
2017-08-16 12:39:25 +00:00
> MIT licensed | **©** [Lossless GmbH](https://lossless.gmbh)
2020-05-25 21:49:35 +00:00
| By using this npm module you agree to our [privacy policy](https://lossless.gmbH/privacy)
2017-08-16 12:39:25 +00:00
2020-05-25 21:49:35 +00:00
[![repo-footer](https://lossless.gitlab.io/publicrelations/repofooter.svg)](https://maintainedby.lossless.com)