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

agenda-react

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

agenda-react

A Dashboard for @hokify/agenda

  • 0.0.10
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
172
decreased by-18.48%
Maintainers
1
Weekly downloads
 
Created
Source

Agenda Dashboard

  • A Dashboard for @hokify/agenda.
  • Got forked from Agendash.

Installation

# npm
npm install agenda-react

# yarn
yarn add agenda-react

Usage with Express JS

import express from "express";
import { Agenda } from "@hokify/agenda";
import Agendash from "agenda-react/agendash/app";

const app = express();

const agenda = new Agenda({
  db: {
    address: `mongodb://${process.env.DB_HOST}/${process.env.DB_NAME}`,
    collection: "agenda",
  },
});

const agendashMiddlewarePromise = Agendash(agenda, {});

(async () => {
  const agendash = await agendashMiddlewarePromise;
  app.use(agendash);

  // ... your code
})();

How to visit the dashboard

  • Go to the dashboard: http://[your-host]/agenda-dashboard

Authentication

  • You need to write a new middleware for this

Features

  • Job status auto-refreshes: 60-second polling by default.
  • Schedule a new job from the UI.
  • Dive in to see more details about the job, like the json data.
  • Requeue a job. Clone the data and run immediately.
  • Delete jobs. Useful for cleaning up old completed jobs.
  • Search jobs by name and metadata. Supports querying by Mongo Object Id.
  • Filter jobs by name, property, value, state
  • Schedule Job with options list (now, everyday, one day in every week, and one day in every month)
  • Pagination
  • Responsive UI

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

License

MIT

Keywords

FAQs

Package last updated on 12 Mar 2024

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