npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tezx/profiler

v1.0.19

Published

Lightweight profiling middleware for TezX framework with built-in system stats UI and rotating file storage.

Downloads

13

Readme

@tezx/profiler

A lightweight, extensible profiling middleware for the TezX framework. This module enables detailed tracking of runtime performance metrics, memory usage, CPU statistics, and supports custom plugins and rotating file storage.


🚀 Features

  • ⏱️ Measure route execution time.
  • 💾 Monitor memory usage in MB.
  • ⚙️ Capture CPU usage in milliseconds.
  • 📊 System stats endpoint (/__profiler) with a clean UI.
  • 🔌 Plugin hooks (beforeProfile, afterProfile).
  • 📁 Rotating file storage for logs.
  • ✅ Written in TypeScript with full type safety.

📦 Installation

npm install @tezx/profiler

🛠️ Usage Example

Basic Setup

import { TezX } from 'tezx';
import { profiler, createRotatingFileStorage } from '@tezx/profiler';

const app =new TezX();

app.use(
  profiler({
    route: '/__profiler',
    excludePaths: ['/favicon.ico'],
    metrics: ['time', 'memory', 'cpu'],
    storage: createRotatingFileStorage('./profiler.log', 1024 * 1024), // Rotate every 1MB
    plugins: [],
  })
);

app.get('/', (ctx) => ctx.json({ message: 'Hello World' }));

🌐 Profiler UI

Visit your app at:

http://localhost:3000/__profiler

You'll see:

  • ✅ Uptime (seconds)
  • ✅ Timestamp
  • ✅ Memory Usage (rss, heapTotal, heapUsed, etc.) in MB
  • ✅ CPU Usage (user/system) in milliseconds

⚙️ Profiler Options

| Option | Type | Default | Description | |------------------|---------------------------------------------|-----------------|-----------------------------------------| | route | string | /__profiler | Path to view system stats | | excludePaths | string[] | [] | Paths to ignore | | metrics | (\"time\" \| \"memory\" \| \"cpu\")[] | ['time', 'memory'] | Metrics to collect | | storage | StorageAdapter | undefined | Save profile results | | plugins | ProfilerPlugin[] | [] | Hook into the profiling lifecycle |


🔌 Plugins Example

const myPlugin = {
  beforeProfile: () => console.log('Starting profiling...'),
  afterProfile: (result) => console.log('Profile completed:', result),
};

app.use(profiler({ plugins: [myPlugin] }));

🗃️ Rotating File Storage Example

const storage = createRotatingFileStorage('./profiler.log', 1024 * 1024); // 1MB rotation

app.use(profiler({ storage }));
  • File automatically rotates when it reaches the configured size.

🧑‍💻 Example Profile Output

{
  "name": "default",
  "duration": 6.25,
  "timestamp": "2025-07-06T19:25:47.753Z",
  "method": "GET",
  "path": "/",
  "memoryUsage": {
    "rss": 10485760,
    "heapTotal": 6291456,
    "heapUsed": 4194304,
    "external": 102400,
    "arrayBuffers": 51200
  },
  "cpuUsage": {
    "user": 1416,
    "system": 312
  }
}

⚡ System Stats Breakdown

Memory Usage

  • rss: Resident Set Size (total memory allocated for the process)
  • heapTotal: Total size of allocated heap
  • heapUsed: Heap actually used
  • external: Memory used by C++ objects bound to JS
  • arrayBuffers: Memory allocated for ArrayBuffer

CPU Usage

  • user: Time spent in user mode (μs)
  • system: Time spent in kernel mode (μs)