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

rediss

Package Overview
Dependencies
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rediss

Simple Redis toolkit

  • 3.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
2
Weekly downloads
 
Created
Source

User Friendly Redis Toolkit

NPM version Downloads Build Status node

Use Redis' commands straight-forward, with no need to remember the complicated Redis API in mind.

Motivation

let redisList = new RedisList('mykey');

let index = await redisList.push('str1');
let data = await redisList.pop();

console.log(index); // Will print 0
console.log(data); // Will print 'str1'

Contribute

Since wrap all Redis commands can take long time, you're welcome to contribute ;)

Support

  • Node > 10
  • Tested on Redis 2.8.2400

Install

npm i rediss -S

Docs

Data types

Note: objects can save mixed JavaScript data, it's means that when saving a value will fetch exactly as saved - with the same type, objects will internally JSON.stringify before save and JSON.parse after fetch

Errors

RedisError

A readonly error that contain the reason something has failed

Keywords

FAQs

Package last updated on 03 Sep 2023

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