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

lumalog

v1.0.8

Published

A colorful and meaningful console log beautifier for enhanced logging experience

Downloads

431

Readme

LumaLog

LumaLog is a simple and customizable logging utility that enhances console output with structured and personalized messages. Whether for debugging or adding a touch of style to your console logs, LumaLog makes it easy to display friendly messages in a consistent format.

Table of Contents

Installation

To install LumaLog, simply run:

npm install lumalog

or, if using Yarn:

yarn add lumalog

Usage

Basic Example

After installing, you can import functions from the lumalog package and start using them in your project:

import { sayHello, slog, setStyles, glog, tlog } from 'lumalog';

sayHello({
  firstName: 'Jane',
  lastName: 'Doe',
  age: 25,
});

setStyles({
  color: 'blue',
  fontSize: '14px',
  fontWeight: 'bold'
});

slog("This is a styled message!");

glog({
  title: "Tasks for Today",
  items: ["Check emails", "Review PRs", "Plan feature roadmap"]
});

const users = [
  { name: 'John', age: 30 },
  { name: 'Jane', age: 25 }
];
tlog(users);

Console Output

The sayHello function will produce a structured output in the console, such as:

------------------------------
Welcome To The LumaLog
------------------------------

Hello Jane Doe

You are 25 years old

------------------------------

The glog function will produce output grouped under a title:

Tasks for Today
  1. Check emails
  2. Review PRs
  3. Plan feature roadmap

The tlog function will display the users data in table format:

┌─────────┬─────────┬─────┐
│ (index) │  name   │ age │
├─────────┼─────────┼─────┤
│    0    │ 'John'  │ 30  │
│    1    │ 'Jane'  │ 25  │
└─────────┴─────────┴─────┘

API Reference

  • sayHello(props: sayHelloProps): void: Outputs a formatted greeting message to the console.
  • slog(message: string): void: Prints a styled message to the console using the current style configuration.
  • setStyles(config: LogStyleConfig): void: Updates the default styling for all future slog messages.
  • glog({ title, items }: LogGroupProps): void: Logs a group of messages under a title, where items is an array of strings.
  • tlog(data: TableLogData[]): void: Logs an array of objects in table format, useful for displaying structured data.

Types

LogStyleConfig

| Property | Type | Default | Description | |------------|----------|----------|-----------------------------| | color | string | black | Text color for the log | | fontSize | string | 12px | Font size of the log text | | fontWeight | string | 500 | Font weight of the log text|

LogGroupProps

| Property | Type | Description | |----------|----------|-------------------------------------------| | title | string | The title under which to group messages | | items | string[] | The array of messages to log under title|

TableLogData

An object representing a row of data to display in table format, where each key is a column name.

Contributing

Contributions to LumaLog are welcome! If you'd like to improve the package, feel free to submit a pull request or open an issue on the GitHub repository.

  1. Fork the repository.
  2. Create a new feature branch (git checkout -b feature-branch).
  3. Commit your changes (git commit -m 'Add a new feature').
  4. Push to the branch (git push origin feature-branch).
  5. Open a pull request.

Article

Check Out The Article

License

LumaLog is licensed under the MIT License.