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

redis-nextra

v0.1.0

Published

Node.js V8 Redis, enhanced with util.promisify. Written in full ES2017. Async is the future!

Downloads

4

Readme

Redis-Nextra

npm

npm npm

Node.js V8 redis, enhanced with native promises and extra functionality. Written in full ES2017. Async is the future!

Usage

// First, we require redis-nextra.
const Redis = require('redis-nextra');

// Create a connection to redis with a string
const redis = new Redis.Client('host:port', options); // or just 'host' if the port is the defualt port
// As an array of strings, to evenly load the servers
const redis = new Redis.Client(['host1:port', 'host2'], options);
// As an object to custom weight different servers
const redis = new Redis.Client({ "host1:port": 1, host2: 2 }, options); // host 2 will take on 2x the load that host 1 will

// Make sure to listen the events from redis.
redis
    .on('ready', () => console.log('Redis-Nextra is ready.'))
	.on('serverReconnect', server => console.warn(`Redis server: ${server.host.string} is reconnecting`))
	.on('error', err => console.error('Redis error:', err));

// As in virtual tables, tables.has is sync as it checks a value from a Set.
// And redis.createTable only adds a new value to said Set.
if (!redis.tables.has('users')) redis.createTable('users');

// Check if the key 'Sandra' exists in the virtual table 'users'.
// If it exists, return true, otherwise set it.
redis.table('users').has('Sandra')
    .then(exists => exists ? true : redis.table('users').setJson('Sandra', { age: 21 }));

// The example above is equal to:
redis.has('RDN_users_Sandra')
    .then(exists => exists ? true : redis.set('RDN_users_Sandra', JSON.stringify({ age: 21 })));

// redis.has is a method from redis-nextra which calls redis.exists and
// returns a Boolean.

Docs

All methods return Native Promise.

Additionally, this package does use of Proxy when using redis.prototype.table, which is an object oriented way to use it, for example:

Normally, with Redis you would use the following code:

redis.psetex('RDN_someTable_someEntry', 10000, JSON.stringify(someObject));

However, with Redis-Nextra and using the redis.prototype.table's proxy:

redis.table(someTable).setJson(someEntry, someObject, 10000);

Additionally, this package uses virtual tables stored in redis.prototype.tables as a Set and uses JSON.parse() and JSON.stringify() internally on all methods with the Json suffix, normal methods will work as expected from the Redis.io documentation.

License

Copyright (c) 2017 BDISTIN