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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ez4/scheduler

v0.51.0

Published

EZ4: Components to build scheduler services

Downloads

823

Readme

EZ4: Scheduler

The Scheduler contract defines time‑based or programmatically scheduled events for your application. It uses EZ4's reflection system to analyze your event type, target handler, variables, and connected services, then generates the infrastructure and runtime bindings required to execute scheduled tasks.

Getting started

Install

npm install @ez4/scheduler @ez4/local-scheduler @ez4/aws-scheduler -D

Create a dynamic scheduler

Schedulers are ideal for cron jobs, recurring tasks, delayed execution, and dynamic scheduling workflows.

import type { Environment, Service } from '@ez4/common';
import type { Cron } from '@ez4/scheduler';

// My event declaration
type MyEvent = {
  foo: string;
  bar: number;
};

// My scheduler declaration
export declare class MyScheduler extends Cron.Service<MyEvent> {
  expression: 'dynamic';

  target: Cron.UseTarget<{
    handler: typeof eventHandler;
  }>;

  variables: {
    myVariable: Environment.Variable<'MY_VARIABLE'>;
  };

  services: {
    otherService: Environment.Service<OtherService>;
    variables: Environment.ServiceVariables;
  };
}

Handle scheduled events

EZ4 validates the incoming event, injects all variables and services, and then invokes your target handler.

// My event handler
export function eventHandler(request: Cron.Incoming<MyEvent>, context: Service.Context<MyScheduler>): void {
  const { otherService, variables } = context;
  const { event } = request;

  // Access event contents
  event.foo;

  // Access injected services
  otherService.call();

  // Access injected variables
  variables.myVariable;
}

Use dynamic scheduler

Dynamic schedulers allow you to create scheduled events programmatically.

import type { Service } from '@ez4/common';
import type { MyScheduler } from './cron';

// Any other handler that has injected MyScheduler service
export async function anotherHandler(_request: any, context: Service.Context<AnotherService>) {
  const { myScheduler } = context;

  // Schedule a future execution
  await myScheduler.createEvent('scheduler-id', {
    date: new Date(Date.now() + 60 * 1000),
    event: {
      foo: 'foo',
      bar: 123
    }
  });
}

This makes it easy to schedule delayed or recurring tasks from anywhere in your application.

With your scheduler defined, EZ4 handles provisioning, event triggering, retries, and execution automatically according to your contract.

What's next

Examples

Providers

License

MIT License