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

better-queue-sql

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

better-queue-sql

A SQL store for better-queue

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
336
increased by23.53%
Maintainers
1
Weekly downloads
 
Created
Source

Better Queue - SQL Store

A SQL store for better-queue.

Getting started

Install this store with npm:

npm install --save better-queue-sql

Configure your queue to use the sql store:

var q = new Queue(fn, {
  store: {
    type: 'sql',
    ... more options here
  }
})

... or instantiate it and pass it to the store directly:

var SQLStore = require('better-queue-sql');
var store = new SQLStore(opts);
var q = new Queue(fn, { store: store })

Examples

Please have a look at the better-queue documentation on how to set up and use stores.

Contributions

Are welcome!

This library was initially made by the awesome team of engineers at Diamond.

If you haven't already, make sure you install Diamond!

Keywords

FAQs

Package last updated on 18 Aug 2022

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