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

@rasri/log

v1.3.0

Published

Simple universal logger for node/browser, with prefix, time and colors

Downloads

11

Readme

Maintainability Test Coverage

Simple logger

Simple universal and extra-light (1kB) logger for node/browser, with prefix, time and colours.

This simple utility is <1kB and is optimised to disable all logging in production, display log time, line of origin, prefix and sane colors on the server console.

Also, it is tree-shacked and has the same API as the console native object.

We use it with Next.js and Vercel, and we don't need the server logs on production because we have Sentry for that, and disabling them reduces our cost.

Usage

import createLogger from "@unly/logger";

const logger = createLogger({
  prefix: "My lib",
  shouldPrint: () => process.env.NODE_ENV !== "production", // Only print in non-production env (default behavior)
});

Make sure to check our advanced examples below!

Example color output (server console)

image

This is an example of the default color behaviour (see scripts/show-colors.js).

Recommended usage (pro tips)

We recommend adapting:

  • The prefix option, using the filename, the class name, the module name, etc. to help locate the origin of the message.
  • The shouldPrint option to your needs. By default, it won't print anything in production environment.
  • The colorize option, if you want to customize the colors used on the server. See colorizeFallback for inspiration.

Installation

yarn add @unly/logger

or

npm install @unly/logger

Peer dependencies

You'll also need to install those peer dependencies:

  • yarn add chalk

We decided to allow you to decide what version of chalk you want to use for greater flexibility.

Options

Here are a few options to adapt the lib to your own needs.

export type LoggerOptions = {
  prefix?: string;
  disableAutoWrapPrefix?: boolean;
  colorize?: Colorize;
  shouldPrint?: ShouldPrint;
  shouldShowTime?: ShouldShowTime;
  timeFormat?: TimeFormat;
};

export type Colorize = (mode: PrintMode, prefixes: string[]) => string[];
export type ShouldPrint = (mode: PrintMode) => boolean;
export type ShouldShowTime = () => boolean;
export type TimeFormat = () => string;

Default options

prefix: None
disableAutoWrapPrefix: `false`
colorize: Colorize for server console only, see implementation
shouldPrint: Prints if NODE_ENV !== 'production'
shouldShowTime: Enabled
timeFormat: Using ISO string

Advanced configuration

You can define the following environment variables:

  • UNLY_SIMPLE_LOGGER_ENV: Will be used instead of NODE_ENV, to configure the default behavior of shouldPrint.
    • E.g: If set to APP_STAGE, then will compare APP_STAGE with production. If APP_STAGE = 'staging' (or development), then shouldPrint will print by default. If APP_STAGE = 'production', then shouldPrint will not print by default. If a custom shouldPrint is provided, then it will ignore UNLY_SIMPLE_LOGGER_ENV as it won't rely on the default shouldPrint implementation.
  • SIMPLE_LOGGER_SHOULD_SHOW_TIME: Will be used to configure whether to show the time by default.
    • E.g: If set to false, then will not show the time.

Advanced examples

Those advanced examples are taken from actual implementation in production-grade applications.

Application-wide logger

If you want to define your config only once and reuse it everywhere across your app, you can write a proxy, see below:

logger.ts

import createLogger, { Logger } from "@unly/logger";

/**
 * Custom logger proxy.
 *
 * Customize the @unly/logger library by providing app-wide default behavior.
 *
 * @param fileLabel
 */
export const createLogger = ({ fileLabel }: { fileLabel: string }): Logger => {
  return createLogger({
    prefix: fileLabel,
    shouldPrint: (mode) => {
      return process.env.NEXT_PUBLIC_APP_STAGE !== "production";
    },
  });
};

someFile.ts

import { createLogger } from "../logger";

const fileLabel = "someFile";
const logger = createLogger({
  fileLabel,
});

logger.warn(`Oops, a warning!`, { x: 1 });

Silent all logs during tests (Jest)

Similar to the previous example, the createLogger can be used to change the behaviors for tests.

In the below example, the NODE_ENV equals test during tests (when running yarn test) and it makes it easy to change the behavior to use console instead of the logger in such case. Combined with other configuration, it allows to silent all logs when using either console or logger during tests.

logger.ts

/**
 * Custom logger proxy.
 *
 * Customize the @unly/logger library by providing app-wide default behavior.
 *
 * @param fileLabel
 */
export const createLogger = ({ fileLabel }: { fileLabel: string }): Logger => {
  // Mute logger during tests, to avoid cluttering the console
  if (process.env.NODE_ENV === "test") {
    return global.muteConsole();
  }

  return createLogger({
    prefix: fileLabel,
    shouldPrint: (mode) => {
      return process.env.NEXT_PUBLIC_APP_STAGE !== "production";
    },
  });
};

Contributing

We gladly accept PRs, but please open an issue first, so we can discuss it beforehand.


Changelog

No changelog for now. WIP. Thinking of using https://github.com/semantic-release/semantic-release.


Releases versioning

We follow Semantic Versioning. (major.minor.patch)


License

MIT


Vulnerability disclosure

See our policy.


Contributors and maintainers

This project is being authored by:


[ABOUT UNLY]

Unly is a socially responsible company, fighting inequality and facilitating access to higher education. Unly is committed to making education more inclusive, through responsible funding for students.

We provide technological solutions to help students find the necessary funding for their studies.

We proudly participate in many TechForGood initiatives. To support and learn more about our actions to make education accessible, visit :

Tech tips and tricks from our CTO on our Medium page!