New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

kue-dashboard-express

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kue-dashboard-express

Kue Dashboard for Express

  • 1.5.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Kue-Dashboard-Express

Introduction

Easy way to mount Kue-Dashboard for Express apps.

Installation

$ npm install kue-dashboard-express

Setup

Mount with Express and Kue

var kue = require('kue');
var express = require('express');
var kueDashboardExpress = require('kue-dashboard-express');
var app = express();

kue.createQueue();

kueDashboardExpress(app, '/dashboard', '/kue-api');

// Mount kue JSON api
app.use('/kue-api/', kue.app);

app.listen(3000);

Configuration

The example above mounts the Kue-Dashboard Vuejs application on the express app at the location /dashboard and tells the application to point at /kue-api/ to access the Kue JSON API.

kueDashboardExpress(app, '/interface', 'https://otherdomain.com/kue-api');

Development

This repo is just a wrapper for wrapping Kue-Dashboard in an Express app. Most develpment will be done on the main Kue-Dashboard repo.

Docker

Available on Docker Hub as [sunilmore690/kue-dashboard](https://hub.docker.com/r/sunilmore690/kue-dashboard.

$ docker run -p 3000:80 -e REDIS_URL=redis://127.0.0.1:6379 -e REDIS_PREFIX=prefix -t sunilmore690/kue-dashboard 

where REDIS_URL format is => redis://:@<redis_host>:<redis_port>/

Open http://localhost:3000 in browser

License

kue-dashboard-express is released under the MIT license. See LICENSE.txt for the complete text.

Keywords

FAQs

Package last updated on 25 Sep 2019

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