Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@quirrel/owl
Advanced tools
A high-throughput, TypeScript-native task scheduling library that runs both on Redis and with an in-memory-mock.
Owl is a high-performance, redis-backed job queueing library originally built for Quirrel 🐿.
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
Owl ...
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.
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.
At the moment, Owl does not aim to be compatible with Redis Cluster. This may change in the future, though.
Thanks goes to these wonderful people (emoji key):
Simon Knott 💻 🤔 | Antony 💻 🐛 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
A high-throughput, TypeScript-native task scheduling library that runs both on Redis and with an in-memory-mock.
The npm package @quirrel/owl receives a total of 1,589 weekly downloads. As such, @quirrel/owl popularity was classified as popular.
We found that @quirrel/owl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.