1.0.0 • Published 5 years ago

@asyncio/redis v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

@asyncio/redis

A high performance async/await native redis client library.

Fully type-checked, fully documented, no compilation needed.

Supports Node 8.X LTS.

Install

Install with NPM:

    npm install @asyncio/redis

Usage

const redis = require('@asyncio/redis');

async function main() {
  const conn = await reddis.connect();

  await conn.hset('hash', 'field', 'value');

}
main();