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 @rexxars/ioredis-mock with all npm packages installed. Try it out:

var RedisMock = require('ioredis-mock').default; 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' }, } }); await redis.incr('user_next');

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

@rexxars/ioredis-mock v2.2.0

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