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

@bliztek/logger

v1.0.5

Published

Lightweight contextual logging service for Node & browser with runtime and env-based filtering.

Readme

@bliztek/logger

A lightweight contextual logger for Node.js and Next.js environments.

Tests npm version license codecov

Supports:

  • Log levels (DEBUG, INFO, WARN, ERROR)
  • Context isolation (user, auth, db, etc.)
  • Context policies (none or all)
  • Runtime and environment-based filtering (LOGGER_CONTEXTS, LOGGER_CONTEXT_POLICY, DEBUG)
  • Pretty colors (Node and browser-safe)
  • TypeScript-first API

🚀 Installation

Install with pnpm, npm, or yarn:

# pnpm (recommended)
pnpm add @bliztek/logger

# npm
npm install @bliztek/logger

# yarn
yarn add @bliztek/logger

🧩 Example Usage

Basic

import { logger } from "@bliztek/logger";

logger.info("Server starting...");
logger.warn("Low memory warning");
logger.error("Something went wrong", { code: 500 });

With Contexts

import { logger } from "@bliztek/logger";

// Create scoped loggers
const userLog = logger.child("user");
const authLog = logger.child("auth");

// Enable only specific contexts
logger.enableContexts("user");

userLog.info("User logged in", { id: 42 });
authLog.info("Token refreshed"); // won't log because "auth" not enabled

Using Environment Variables

You can configure the logger globally:

# .env or shell
DEBUG=true
LOGGER_CONTEXTS=user,auth
LOGGER_CONTEXT_POLICY=all

Behavior summary:

  • LOGGER_CONTEXT_POLICY=none → nothing logs unless explicitly enabled.
  • LOGGER_CONTEXT_POLICY=all → all contexts log unless prefixed with ! in LOGGER_CONTEXTS.

Custom Log Level

import { LoggingService } from "@bliztek/logger";

const debugLogger = new LoggingService({ level: "DEBUG", context: "api" });
debugLogger.setContextPolicy("all");
debugLogger.debug("Detailed debugging info");

Browser Support

Works seamlessly in browser builds (e.g., Next.js app/ or React apps):

"use client";

import { logger } from "@bliztek/logger";

const uiLogger = logger.child("ui");
uiLogger.setContextPolicy("all");
uiLogger.info("Button clicked!");

Logs appear styled in DevTools:

  • Gray for DEBUG
  • Teal for INFO
  • Yellow for WARN
  • Red for ERROR

⚙️ Environment Variables

| Variable | Description | Example | | ----------------------------- | -------------------------------------------------------------------------------------- | ------------------------------------- | | DEBUG | Enables debug-level logging globally | DEBUG=true | | NEXT_PUBLIC_DEBUG | Same as DEBUG, but for browser environments | NEXT_PUBLIC_DEBUG=true | | LOGGER_CONTEXT_POLICY | Controls global behavior (none = nothing logs, all = all logs) | LOGGER_CONTEXT_POLICY=all | | LOGGER_CONTEXTS | Comma-separated list of enabled contexts (or !context to disable under all policy) | LOGGER_CONTEXTS=user,db,!auth | | NEXT_PUBLIC_LOGGER_CONTEXTS | Same, but browser-safe | NEXT_PUBLIC_LOGGER_CONTEXTS=ui,test |


📦 API Reference

logger: LoggingService

Global singleton instance (default level auto-detected).

.child(context: string)

Creates a namespaced logger for the given context.

.setLevel(level: "DEBUG" | "INFO" | "WARN" | "ERROR")

Adjusts verbosity.

.enableContexts(...contexts: string[])

Enables one or more logging contexts.

.disableContexts(...contexts: string[])

Disables contexts.

.setContextPolicy(policy: "all" | "none")

Sets the runtime context policy.

.debug() / .info() / .warn() / .error()

Standard log methods.


🧠 Example Output

[2025-10-05T17:22:44.012Z] [INFO] [user] User logged in {"id":42}
[2025-10-05T17:22:44.014Z] [WARN] [auth] Token nearing expiry

🛠 Development

Build

pnpm build
# or
npm run build
# or
yarn build

Lint

pnpm lint
# or
npm run lint
# or
yarn lint

Test

pnpm vitest
# or
npm run test
# or
yarn test

Example Run

LOGGER_CONTEXT_POLICY=all DEBUG=true tsx packages/logger/examples/demo.ts

🧪 Example File

See examples/demo.ts for a working demonstration.


📄 License

MIT © Bliztek, LLC