@asyncio/redis

A high performance async/await native redis client library.

Usage no npm install needed!

<script type="module">
  import asyncioRedis from 'https://cdn.skypack.dev/@asyncio/redis';
</script>

README

@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();