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 🙏

© 2024 – Pkg Stats / Ryan Hefner

log2stream

v3.1.1

Published

A logging library with an interface inspired by Log4j but removes the concepts of appenders and layouts in favour of streams.

Downloads

46

Readme

Log2stream

Available from NPM Built using Travis

A logging library with an interface inspired by Log4j but removes the concepts of appenders and layouts in favour of streams.

Usage

The TL;DR is that there are factories (usually one) which create loggers which each create log records of various severity levels that you can format, filter and persist freely using streams.

This module can be treated as an ES module:

import * as log2stream from 'log2stream';
// or
import { LoggerFactory } from 'log2stream';

This module can also be treated as a CommonJS module:

const log2stream = require('log2stream');
// or
const { LoggerFactory } = require('log2stream');

Logger Factories

Loggers are created by a factory:

const factory = new LoggerFactory();

Creating Loggers

Creating loggers is simple:

const logger = factory.getLogger('name');

Note: You can only have one logger instance with a given name. Any subsequent attempts to create a logger with the same name will result in the same logger being returned. For example, this would be true:

factory.getLogger('name') === factory.getLogger('name');

Using a logger

You can create log records that highlight severe errors that may stop the application from running:

logger.fatal('This is a fatal error message.');

You can create log records that highlight errors that wouldn't normally stop the application from running.

logger.error('This is an error message.');

You can create log records that highlight potentially harmful situations.

logger.warn('This is a warning message.');

You can create log records that highlight the progress of an application.

logger.info('This is an information message.');

You can create log records that are useful for debugging an application.

logger.debug('This is a debug message.');

In addition to logging a string message, you may also provide additional metadata:

logger.warn('This is a warning message.',
{
    detail : 'Detail of what happened...'
});

Severity levels

There are 5 predefined levels of severity a log record can have:

| Level | Corresponding logger method | Description | | ----- | ------------------------------ | ---------------------------------------------------------------- | | Fatal | logger.fatal() | Severe errors that may stop the application from running. | | Error | logger.error() | Errors that wouldn't normally stop the application from running. | | Warn | logger.warn() | Potentially harmful situations. | | Info | logger.info() | Progress of an application. | | Debug | logger.debug() | Details useful for debugging an application. |

These levels are all exposed via the log2stream.Level type.

Log record streams

All log records created by a logger are written to their own stream:

const target = new stream.Writable(
{
  write (record, _, callback)
  {
    // ...
  },

  objectMode : true // Important!
});

logger.stream.pipe(target);

Additionally, all log records created by a logger are automatically written to the stream of the factory responsible for creating it:

factory.stream.pipe(target);

Note: Any stream you pipe the logger or factory streams into must have objectMode enabled, as log records are being streamed, not strings or buffers. Read further at the Node.js stream documentation.

Log record structure

| Property | Type | Description | | ---------- | -------- | ------------------------------------------------------------------------------- | | level | Level | The severity level. See Severity levels | | category | string | The name of the logger that created the record. | | message | string | The message describing the record. | | date | Date | The date and time the record was created. | | metadata | any | The optional data assocated with the record. |

Formatting log records

To manipulate log records you will have to pipe the stream of a factory (or logger) into a transformation stream. A utility is provided to help you achieve this:

const formatter = log2stream.transform(record =>
{
    return `${record.category} - ${record.message}`;
});

factory.stream.pipe(formatter);

Filtering log records

There could be times when you want to filter log records. An example would be to pipe all log records of a severity level greater than Warn into the stderr stream.

To achieve this you will have to pipe the stream of a factory (or logger) into a filter stream. A utility is provided to help you achieve this:

const refine = log2stream.filter(record =>
{
    return record.level.isGreaterThan(Level.Warn);
});

factory.stream.pipe(filter);

Getting started

This project is available through the Node Package Manager (NPM), so you can install it like so:

npm install log2stream

Please Note: Versions of Node lower than v12.0.0 are not supported.

Development

Building

You can build a CommonJS version of this module that is also minified:

npm run build

Testing

This module also has a robust test suite:

npm test

This also runs code quality checks using ESLint. Please refer to the .eslintrc files to familiar yourself with the rules.

License

This project is released under the MIT License.