Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

adonis-kue-provider

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

adonis-kue-provider

Kue provider for the Adonis framework

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

Adonis Kue Provider

A Kue provider for the Adonis framework.

Install

npm install --save adonis-kue-provider

Configure

Register it in bootstrap/app.js:

const providers = [
  'adonis-kue-provider/providers/KueProvider'
]

Also consider adding an alias to validation provider.

const aliases = {
  Kue: 'Adonis/Addons/Kue'
}

Add a configuration file in config/kue.js. For example:

'use strict';

const Env = use('Env');

module.exports = {
  prefix: 'q',
  redis: Env.get('REDIS_URL')
};

See the Kue Documentation for more connection options.

Thanks

Special thanks to the creator(s) of AdonisJS for creating such a great framework.

Keywords

FAQs

Package last updated on 24 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc