
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
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
The npm package duron-dashboard receives a total of 16 weekly downloads. As such, duron-dashboard popularity was classified as not popular.
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.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.