Socket
Socket
Sign inDemoInstall

agenda-react

Package Overview
Dependencies
284
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    agenda-react

A Dashboard for @hokify/agenda


Version published
Weekly downloads
77
decreased by-34.75%
Maintainers
1
Install size
3.76 MB
Created
Weekly downloads
 

Readme

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

Last updated on 12 Mar 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc