Sign Up for Free

RunKit +

Try any Node.js package right in your browser

This is a playground to test code. It runs a full Node.js environment and already has all of npm’s 1,000,000+ packages pre-installed, including ioredis-mock with all npm packages installed. Try it out:

// ioredis is a peer dependency so we must include it for the RunKit example to work require('ioredis/package.json'); var RedisMock = require('ioredis-mock'); var redis = new RedisMock({ data: { user_next: '3', emails: { 'clark@daily.planet': '1', 'bruce@wayne.enterprises': '2', }, 'user:1': { id: '1', username: 'superman', email: 'clark@daily.planet' }, 'user:2': { id: '2', username: 'batman', email: 'bruce@wayne.enterprises' }, }, }); async function main() { const userNext = await redis.incr('user_next'); await redis.hmset( `user:${userNext}`, new Map([ ['id', userNext], ['username', 'wonderwoman'], ['email', 'diana@amazon.gr'], ]) ); console.log(await redis.hgetall(`user:${userNext}`)); } main();

This service is provided by RunKit and is not affiliated with npm, Inc or the package authors.

ioredis-mock v4.16.3

This library emulates ioredis by performing all operations in-memory.

RunKit is a free, in-browser JavaScript dev environment for prototyping Node.js code, with every npm package installed. Sign up to share your code.
Sign Up for Free