npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

everytime.js

v0.1.3

Published

Schedule async functions to run repeatedly

Downloads

3

Readme

everytime.js - Schedule async functions

TLDR

every.other.day.at("12:00").do(async () => console.log("Hello"))

everytime.js is a library that helps you schedule functions to run repeatedly. Also available in Python.

Full Example

import { every } from "everytime.js"

async function greet() {
    console.log("Hello")
}

every(5).days.do(greet)

Install

everytime.js can be installed from npmjs with

npm i everytime.js

How to schedule functions

do()

Normally, you will use the do-function to schedule functions.

every(5).seconds.do(greet)

schedule

You can wrap the everytime expression into a call to schedule.

schedule(every.day.at("12:00"))(greet)

This allows you to pass custom datetime iterables to schedule (see Schedule custom times).

Schedule custom times

schedule accepts datetime iterables. The following schedule works:

schedule([dayjs(), dayjs().add(1, "day")])

Decorators

Keep in mind that Decorators are an experimental feature and may be subject to change.

Decorators only work for methods and not for free functions. Therefore you have to wrap functions in a class to use the run decorator.

class C {
    @run(every.second)
    static f() {
        console.log("hello")
    }
}

Supported Expressions

Quantification

Every time unit can be quantified by every, every.other or every(n):

  • every.second
  • every.other.second
  • every(5).seconds

Supported time units

The supported time units are

  • millisecond
  • second
  • minute
  • hour
  • day
  • week

Modifier functions

All everytime expressions are datetime iterables of type Iterable<Dayjs>. To change the scheduling, modify these enumerations with the following functions.

filter

every.hour.filter((datetime: Dayjs) => datetime.hour() < 10).do(greet)

will schedule the function hourly, but only betweeen 0:00 and 9:59.

map

every.hour.map((datetime: Dayjs) => datetime.startOf("hour"))

will schedule the function hourly, but ensures that the function will run at the start of the hour at minute 0.

take

every.day.at("12:00").take(10).do(greet)

will schedule the function daily at 12:00 for the next 10 days (and then terminate).

Specific time of the day

day can be scheduled for a specific time of the day:

every.day.at("12:15")

(Note that hour is 24-hour based)

How it works

everytime.js uses setTimeout to schedule functions and the Day.js library to calculate time differences.

Normally, the process will run forever (because expressions like every.day describe infinitely many datetimes). If you use a finite custom iterable with schedule, the process will terminate accordingly.