
Research
TeamPCP Compromises Telnyx Python SDK to Deliver Credential-Stealing Malware
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.
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 174 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.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.

Security News
/Research
Widespread GitHub phishing campaign uses fake Visual Studio Code security alerts in Discussions to trick developers into visiting malicious website.