UNPKG

@ajejoseph22/proxx

Version:

A lightweight HTTPS/HTTP proxy server with bandwidth tracking, basic auth and real-time analytics.

17 lines (14 loc) 261 B
export interface Metrics { bandwidth_usage: string; top_sites: Array<{ url: string; visits: number; }>; } export interface ProxyDBRecord { visits: number; bytesTransferred: number; } export interface AuthDBRecord { passwordHash: string; }