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

@halokit/reporter

v1.0.0

Published

HaloKit - Terminal reporting utility

Downloads

4

Readme

@halokit/reporter

A terminal reporting utility with logging capabilities.

Contents

Getting started

To install @halokit/reporter in your project, you will need to run the following command using npm:

npm install -S @halokit/reporter

If you prefer yarn, use the following command instead:

yarn add @halokit/reporter

Usage

Importing

This module can be imported and used by doing the following in your code:

// ES6 Module
import { reporter, emojiReporter } from '@halokit/reporter';

// CommonJS Module
const { reporter, emojiReporter } = require('@halokit/reporter');

All the modules have TypeScript type definitions built in. There is no need to install additional packages.

Creating a logging item

HaloKit's reporter relies on a specific object format that should have at least the following properties:

var item = {
  content: 'Hello world!',
  level: 1 // 0 - 6
}

If you are using typescript, you can use the interface LogItem to build objects, as defined here:

interface LogItem {
  content: string;
  level: LogLevel;
  print?: boolean;
}

The print property will determine whether the built log entry should be redirected to standard output aswell, and defaults to false.

Where the available log levels are:

export enum LogLevel {
  Log = 0,
  Debug = 1,
  Info = 2,
  Warn = 3,
  Error = 4,
  Fatal = 5,
  Success = 6
}

You can use the enum name or it's integer representation.

Logging the item

Once you have your loggable item created, you can generate a log/reporting entry out of it by using the reporter of your choice.

This package exports both a reporter and an emojiReporter. If you decide to use the emoji reporter, an emoji, representative of each level, with be added at the beginning of each logging entry.

A working example would be as follows:

import { reporter, emojiReporter } from '@halokit/reporter';

const item = {
  content: 'Hello world!',
  level: 1
}

const plainLog = reporter.report(item); // debug: Hello world!
const emojiLog = emojiReporter.report(item); // 🛠  debug: Hello world!

Once you've called the report() method, another object will be returned with the following properties:

{
  content: string; // Built log .
  technical: string; // Plain log, without any emojis or coloring.
  raw: string; // Plain log with emojis, but no coloring.
  timestamp: string; // Time of creation of the log.
}

Contributing

We're always looking for contributors to help us fix bugs, build new features, or help us improve the project documentation.

License

This module is licensed under the Apache 2.0 License.