2.0.1 • Published 2 years ago

cronu v2.0.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 years ago

cronu

Simple, minimalistic scheduler, created by Azury.

Installation

Install the Package

Install cronu using your favorite package manager.

npm i cronu
yarn add cronu

Schedule a Job

import schedule from 'cronu'

const task = await schedule('1h', async ({ firedAt }) => {
  console.log('A job running every hour.')
  console.log(firedAt) // a date string in ISO format
})

await task.pause()
await task.resume()
2.0.1

2 years ago

2.0.0

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.0

2 years ago