1.0.2 • Published 4 years ago

egg-rsmq v1.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

egg-rsmq

NPM version build status Test coverage David deps Known Vulnerabilities npm download

Paginator for egg-mysql

Install

$ npm i egg-rsmq --save

Usage

// {app_root}/config/plugin.js
exports.rsmq = {
  enable: true,
  package: "egg-rsmq"
};
// {app_root}/config/config.default.js
config.rsmq = {
  host: "192.168.16.104",
  port: 6379
};

Example

// query
await app.rsmq.sendMessageAsync({
  name: "foo",
  message: JSON.stringify(json_info)
});

License

MIT