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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@quicore/loggable

v0.1.0

Published

A comprehensive, class-based logging library for creating standardized activity logs in JavaScript.

Readme

@quicore/loggable

A comprehensive, class-based logging library for creating standardized and extensible activity logs in JavaScript.

This package provides a set of classes built around a core Loggable base class, allowing you to easily construct detailed and consistent log objects that can be serialized to JSON.

Features

  • Class-Based Design: Use familiar object-oriented patterns to build your logs.
  • Reduced Boilerplate: A central Loggable class handles getters, setters, and JSON serialization, keeping your code clean.
  • Standardized Structure: Create logs with a consistent schema, making them easier to parse and analyze.
  • Extensible: Easily add new fields or custom classes by extending Loggable.

Installation

npm install @quicore/loggable

Usage

You can import all classes from the main entry point of the package.

import {
  ActivityLog,
  Agent,
  Detail,
  EventSource,
  HttpRequest,
  Loggable,
  Network,
  Outcome,
  Process,
  Resource,
  User,
} from '@quicore/loggable';

// Example Usage:
const log = new ActivityLog('authentication', 'login', 'info');
log.description = 'User login attempt';

const user = new User('user123', 'human');
const network = new Network('192.168.1.100', 'client.example.com');
const agent = new Agent(user, network);

log.addAgent(agent);

const resource = new Resource('application', 'login-service');
log.addResource(resource);

const outcome = new Outcome('SUCCESS', 'Login successful');
log.outcome = outcome;

console.log(JSON.stringify(log.toJSON(), null, 2));

/*
Output:
{
  "type": "authentication",
  "action": "login",
  "severity": "info",
  "occurred": {
    "start": "2023-10-27T10:00:00.000Z", // Actual date/time will vary
    "end": "2023-10-27T10:00:00.000Z"
  },
  "recordedAt": "2023-10-27T10:00:00.000Z",
  "subtype": [],
  "tags": [],
  "source": [],
  "detail": [],
  "agent": [
    {
      "user": {
        "uid": "user123",
        "type": "human",
        "roles": [],
        "groups": []
      },
      "network": {
        "ip": "192.168.1.100",
        "host": "client.example.com"
      }
    }
  ],
  "resource": [
    {
      "type": "application",
      "name": "login-service"
    }
  ],
  "outcome": {
    "code": "SUCCESS",
    "detail": "Login successful"
  }
}
*/

API Reference

Core Classes

  • Loggable: The base class from which all other classes inherit. Provides core functionality like the toJSON() method.
  • ActivityLog: The main class for an activity log event. It aggregates all other classes and is the primary object you will work with.

Supporting Classes

  • Outcome: Describes the result of an activity (e.g., SUCCESS, FAILURE).
  • Network: Captures network-related information like IP addresses and hostnames.
  • EventSource: Defines the source of the event (e.g., an application, system, or vendor).
  • Detail: A flexible class for adding custom key-value pairs to a log.
  • HttpRequest: Stores details about an HTTP request.
  • User: Contains user-specific information.
  • Resource: Describes the target of the activity, such as a file or database.
  • Process: Holds information about a process or service.
  • Agent: Represents the actor that initiated the activity, combining User and Network data.

License

Distributed under the MIT License. See LICENSE for more information.