Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ron

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ron

Redis ORM for NodeJs

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
13
increased by160%
Maintainers
1
Weekly downloads
 
Created
Source

Redis ORM for NodeJs

Ad-lib, be carefull, this project is experimental.

The library provide

  • Simple & tested API
  • Sortable indexes and unique values
  • Records are pure object, no extended class, no magic properties
  • Code, tests and readme written in coffescript, samples written in javascript

Quick exemple

ron = require 'ron'
app = ron
	host: ''
	port: ''
    name: 'auth'

User = app.create 'users'
User.property 'id',
    identifier: true
# Use a hash index
User.property 'username',
	type: 'string'
	unique: true
# Use a sorted set index
User.property 'email',
	type: 'string'
	index: true

Client API

  • Client::constructor
  • Client::quit
  • Client::create

Schema API

  • Records::property
  • Records::identifier
  • Records::unique
  • Records::index
  • Records::email

Record API

  • Records::all
  • Records::count
  • Records::create
  • Records::exists
  • Records::get
  • Records::id
  • Records::list
  • Records::remove
  • Records::update

Run tests

Start a redis server (tested against version 2.9.0) on the default port redis-server ./conf/redis.conf

Run the test suite with expresso: expresso -s

Keywords

FAQs

Package last updated on 18 Nov 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc