
Research
/Security News
Malicious npm Packages Target WhatsApp Developers with Remote Kill Switch
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
redis-delete-pattern
Advanced tools
Delete a set of keys from a pattern in Redis
This was built to make removing a set of cached related items possible in one fell swoop.
Install the module with: npm install redis-delete-pattern
// Create a redis client
var redis = require('redis');
var redisDeletePattern = require('redis-delete-pattern');
var client = redis.createClient();
// Set up some data (pattern `model-{{id}}` in cache)
client.set('model-1234', 'hello');
client.set('model-5678', 'world');
// Fetch some data
client.get('model-1234', console.log); // null, 'hello'
client.get('model-5678', console.log); // null, 'world'
// Delete cached model data
redisDeletePattern({
redis: redis,
pattern: 'model-*'
}, function handleError (err) {
// Fetch our keys but find nothing
client.get('model-1234', console.log); // null, null
client.get('model-5678', console.log); // null, null
});
redis-delete-pattern
presents redisDeletePattern
as its module.exports
.
redisDeletePattern(params, cb)
Function that deletes list of keys that match a pattern from Redis
Object
, container for parameters
Function
, error-first, (err)
, callback function to handle errors
Error|null
, if there was an error, this will be itIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via grunt and test via npm test
.
Copyright (c) 2014 Uber Technologies, Inc.
Licensed under the MIT license.
FAQs
Delete a set of keys from a pattern in Redis
The npm package redis-delete-pattern receives a total of 357 weekly downloads. As such, redis-delete-pattern popularity was classified as not popular.
We found that redis-delete-pattern 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
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.
Security News
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.