
Security News
OpenClaw Advisory Surge Highlights Gaps Between GHSA and CVE Tracking
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.
duron-dashboard
Advanced tools
A beautiful React dashboard for monitoring and managing Duron jobs in real-time. Duron Dashboard can be used as a React component library or as a standalone HTML application.
# Using bun
bun add duron-dashboard
# Using npm
npm install duron-dashboard
# Using pnpm
pnpm add duron-dashboard
# Using yarn
yarn add duron-dashboard
Import and use the DuronDashboard component in your React application:
import { DuronDashboard } from 'duron-dashboard'
import 'duron-dashboard/index.css'
function App() {
return <DuronDashboard url="https://api.example.com/api" />
}
The url prop should point to your Duron server API endpoint (typically /api).
Use the getHTML function to render a fully inlined HTML application. This is useful for server-side rendering where you want to serve a complete HTML page with all assets inlined.
import { Elysia } from 'elysia'
import { getHTML } from 'duron-dashboard/get-html'
const app = new Elysia()
app.get('/', async () => {
const html = await getHTML({ url: 'http://localhost:3000/api' })
return new Response(html, {
headers: { 'Content-Type': 'text/html' },
})
})
app.listen(3000)
import { Hono } from 'hono'
import { getHTML } from 'duron-dashboard/get-html'
const app = new Hono()
app.get('/dashboard', async (c) => {
const html = await getHTML({ url: 'https://api.example.com/api' })
return c.html(html)
})
import express from 'express'
import { getHTML } from 'duron-dashboard/get-html'
const app = express()
app.get('/dashboard', async (req, res) => {
const html = await getHTML({ url: 'https://api.example.com/api' })
res.send(html)
})
import Fastify from 'fastify'
import { getHTML } from 'duron-dashboard/get-html'
const app = Fastify()
app.get('/dashboard', async (request, reply) => {
const html = await getHTML({ url: 'https://api.example.com/api' })
reply.type('text/html').send(html)
})
The dashboard requires authentication if your Duron server has login configured. Users will be prompted to log in when accessing the dashboard.
# Install dependencies
bun install
# Start development server
bun dev
# Build
bun run build
# Type check
bun run typecheck
MIT
FAQs
Unknown package
We found that duron-dashboard demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.

Research
/Security News
Mixed-script homoglyphs and a lookalike domain mimic imToken’s import flow to capture mnemonics and private keys.

Security News
Latio’s 2026 report recognizes Socket as a Supply Chain Innovator and highlights our work in 0-day malware detection, SCA, and auto-patching.