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

@ivasiljevic/owl

v0.15.1

Published

A high-throughput, TypeScript-native task scheduling library that runs both on Redis and with an in-memory-mock.

Downloads

3

Readme

Owl 🦉

Owl is a high-performance, redis-backed job queueing library originally built for Quirrel 🐿.

Getting Started

npm install @quirrel/owl
import Owl from "@quirrel/owl"
import Redis from "ioredis"

const owl = new Owl(() => new Redis())

const worker = owl.createWorker(async (job, ackDescriptor) => {
  console.log(`${job.queue}: Received job #${job.id} with payload ${job.payload}.`);
  // ...

  await worker.acknowledger.acknowledge(ackDescriptor);
})

await worker.start();

const producer = owl.createProducer()

await producer.enqueue({
  queue: "email",
  id: "some-random-id",
  payload: "...",
  runAt: new Date(Date.now() + 1000),
  ...
})

While I originally created Owl for use in Quirrel, I decided to publish it as its own project so people can use it for their own purposes. If you want to use Owl in your own project and need some more documentation: Please go ahead and create an issue for it :D

What's special about Owl?

Owl ...

  • ... doesn't require you to specify queues upfront
  • ... is optimised for short-running jobs
  • ... allows for totally custom schedules
  • ... is written in TypeScript
  • ... has a low-overhead activity stream (based on Redis Pub/Sub)
  • ... allows fast queries about currently scheduled jobs
  • ... has an persisted mode, but also an in-memory one for quick development

Owl's Architecture

Owl Architecture

A job consists of a Queue, an ID and a payload.

They are scheduled for later execution by the producer.

Once the time has come for a job to be executed, a worker will request it. This will move it into a list currently processing jobs. Aftere execution is finished, the worker acknowledges it and (in case of repeated jobs) re-enqueues it.

Trivia

Why Owl?

It's well-known that Squirrels 🐿 and Owls 🦉 are good friends. Owls are reliable, mostly down-to-earth and know how to deal with time. Thus, their skillset makes them excellent queue keepers.

Compatibility with Redis Cluster

At the moment, Owl does not aim to be compatible with Redis Cluster. This may change in the future, though.

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!