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.
then-redis
Advanced tools
then-redis is a fast, promise-based Redis client for node.js. It's build on top of node_redis, so it's safe and stable.
To create a client:
var redis = require('then-redis');
var db = redis.createClient();
var db = redis.createClient('tcp://localhost:6379');
var db = redis.createClient({
host: 'localhost',
port: 6379,
password: 'password'
});
Once you have a client, you're ready to issue some commands. All Redis commands are present on the Client
prototype and may be called with variable length argument lists*. Every command returns a promise for its result. Pipelining happens automatically in most normal usage.
// Simple set, incrby, and get
db.set('my-key', 1);
db.incrby('my-key', 5);
db.get('my-key').then(function (value) {
assert.strictEqual(value, 6);
});
// Multi-key set/get
db.mset({ a: 'one', b: 'two' });
db.mget('a', 'b').then(function (values) {
assert.deepEqual(values, [ 'one', 'two' ]);
});
// Sets
db.sadd('my-set', 1, 2, 3);
db.sismember('my-set', 2).then(function (value) {
assert.strictEqual(value, 1);
});
// Hashes
var originalHash = { a: 'one', b: 'two' };
db.hmset('my-hash', originalHash);
db.hgetall('my-hash').then(function (hash) {
assert.deepEqual(hash, originalHash);
});
// Transactions
db.multi();
db.incr('first-key');
db.incr('second-key');
db.exec().then(function (reply) {
assert.deepEqual(reply, [ 1, 1 ]);
});
// Pubsub
var subscriber = redis.createClient();
subscriber.on('message', function (channel, message) {
console.log('Received message: ' + message);
});
subscriber.subscribe('my-channel').then(function () {
db.publish('my-channel', 'a message');
});
If you don't like the variable-length argument lists, or you already have an array of arguments that you need to pass to a command, you can always call client.send()
directly. It takes two arguments: 1) the name of the Redis command and 2) an array of command arguments.
db.send('get', [ 'my-key' ]);
db.send('incrby', [ 'my-key', 5 ]);
db.send('mset', [ 'a', 'one', 'b', 'two' ]);
* INFO
, MSET
, MSETNX
, HMSET
and HGETALL
optionally accept/return JavaScript objects for convenience in dealing with Redis' multi-key and hash APIs
For best results, it is recommended that you use Redis 2.6 or above.
Using npm:
$ npm install then-redis
Please file issues on the issue tracker on GitHub.
To run the tests in node, first start a redis server on the default port and host and then:
$ npm install
$ npm test
FAQs
Promise-based Redis client
The npm package then-redis receives a total of 2,455 weekly downloads. As such, then-redis popularity was classified as popular.
We found that then-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’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.