@onesy/redis
v1.0.0
Published
Redis
Downloads
131
Maintainers
Readme
Getting started
Add
yarn add @onesy/redis
Add redis
peer dependency.
yarn add redis
Use
import OnesyRedis from '@onesy/redis';
// Make if you wanna a config file and
// inside of it add all the process.env related props
import Config from './config';
// Make a new amqp instance
const onesyRedis = new OnesyRedis({
uri: Config.amqp.redis.uri
});
// Await for a client connection
await onesyRedis.client;
// Send to a queue
await onesyRedis.publish('a', 'a');
Dev
Install
yarn
Test
yarn test
One time local setup
Install docker and docker-compose
- https://docs.docker.com/get-docker
- https://docs.docker.com/compose/install
Make docker containers
yarn docker
Prod
Build
yarn build