ron is a Redis ORM for Node.js that provides a simple, schema-based abstraction over Redis data structures. It allows defining models with types and auto-generates Redis commands for CRUD operations. The package is currently at version 0.0.8 and appears to be in early development with low activity. It differs from other Redis ORMs by its minimalistic approach and direct mapping to Redis types. However, it lacks recent updates and may have limited community support.
npm install ronNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
This example shows defining a User schema, creating a model, inserting a document, and querying all documents.
Ensure Redis is installed and running on localhost:6379.
Consider alternatives like redis-om or ioredis.
Use a maintained library such as redis-om.
Run 'npm install ron@0.0.8' to install the last published version.
Use 'const ron = require('ron');' then 'new ron.Schema(...)'.Start Redis server: 'redis-server'.