Redis OM, also known as Redis Object Mapper (pronounced REDiss OHM), simplifies the integration of Redis into your Node.js application by seamlessly mapping familiar Redis data structures to straightforward JavaScript objects. Say goodbye to cumbersome low-level commands, as Redis OM enables you to work with pure code utilizing an intuitive fluent interface.
- Download and run the redis-stack docker container using
docker run -d --name redis-stack -p 6379:6379 -p 8001:8001 redis/redis-stack:latest
. - Install
concurrently
as a global dependency by runningnpm install -g concurrently
. - Install node modules by running
npm install
. - Run
npm run dev
to start the development server.