0.1.5 • Published 2 years ago

black-redis v0.1.5

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

BlackRedis Node.js CI NPM version Install Size

Black redis allows you to use redis in a very simple and easy way.

Npm

npm install black-redis

Usage

Basic Example

import { RedisService } from "black-redis";

(async () => {
  const client = RedisService();

  client.on('error', (err) => console.log('Redis Client Error', err));

  await client.set('key', 'value', 'db-name (optional)');
  const value = await client.get('key');
})();

License

This repository is licensed under the "MIT" license. See LICENSE.

0.1.5

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago