
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
Web dashboard for HZL - a Kanban-style task monitoring UI.
This package provides the web server and dashboard for programmatic use. For the CLI (which includes hzl serve), install hzl-cli instead.
npm install hzl-web
import { createConnection, runMigrations, EventStore, ProjectionEngine, TaskService } from 'hzl-core';
import { createWebServer } from 'hzl-web';
// Initialize database and services
const db = createConnection('/path/to/data.db');
runMigrations(db);
const eventStore = new EventStore(db);
const projectionEngine = new ProjectionEngine(db, eventStore);
const taskService = new TaskService(db, eventStore, projectionEngine);
// Start the web server
const server = createWebServer({
port: 3456,
host: '0.0.0.0', // or '127.0.0.1' for localhost only
taskService,
eventStore,
});
console.log(`Dashboard running at ${server.url}`);
// Stop the server when done
await server.close();
The server exposes a JSON API:
GET /api/tasks - List tasks (query: since, project)GET /api/tasks/:id - Task detailsGET /api/tasks/:id/comments - Task commentsGET /api/tasks/:id/checkpoints - Task checkpointsGET /api/events - Recent events (query: since for event ID)GET /api/stats - Task statisticscreateWebServer(options) - Create and start the web serverServerOptions - Configuration typeServerHandle - Server control interface (close, port, host, url)MIT
FAQs
Web dashboard for HZL - A Kanban-style task monitoring UI.
The npm package hzl-web receives a total of 31 weekly downloads. As such, hzl-web popularity was classified as not popular.
We found that hzl-web demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.