Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
node-redis
is fast. It uses a lot of
smart techniques to do this that lean heavily upon Redis's architecture. One of
its biggest wins is the way that it takes advantage of pipelining to batch up
commands and push them to the Redis server in chunks. This works great, unless
you're using CLS, which wants to provide consistent access to stored values
across entire asynchronous call chains. You could use ns.bind
to put all your
Redis callbacks on the correct continuation chain, but that breaks down if you
forget even one callback passed to client.get()
.
This shim's job is to take care of the bookkeeping for you. It monkeypatches the Redis driver to ensure that all the callbacks you provide are bound to the CLS namespace you provide to the shim. Use it like so:
var cls = require('continuation-local-storage');
var ns = cls.createNamespace('test');
var patchRedis = require('cls-redis');
patchRedis(ns);
var redis = require('redis');
var client = redis.createClient();
You can patch Redis for more than one namespace, but you're going to notice the performance impact pretty quickly, so try not to do that.
Also, if you're using CLS with Q, you're probably going to want to take a look
at cls-q
as well. At some point, I may
figure out how to eliminate the need for it, but both Q and node-redis
like
to hide their callbacks in such a way that CLS and the asyncListener
infrastructure have a hard time capturing them.
The tests assume a Redis server is up and running on localhost on the standard port.
FAQs
Make continuation-local storage play nice with node-redis.
The npm package cls-redis receives a total of 28 weekly downloads. As such, cls-redis popularity was classified as not popular.
We found that cls-redis 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.