
Security News
TC39 Advances Temporal to Stage 4 Alongside Several ECMAScript Proposals
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.
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 51 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.

Security News
TC39’s March 2026 meeting advanced eight ECMAScript proposals, including Temporal reaching Stage 4 and securing its place in the ECMAScript 2026 specification.

Research
/Security News
Since January 31, 2026, we identified at least 72 additional malicious Open VSX extensions, including transitive GlassWorm loader extensions targeting developers.

Research
Six malicious Packagist packages posing as OphimCMS themes contain trojanized jQuery that exfiltrates URLs, injects ads, and loads FUNNULL-linked redirects.