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

log-animate

v1.1.1

Published

[![VERSION](https://img.shields.io/badge/version-1.0.1-brightgreen)](https://www.npmjs.com/package/log-animate)

Downloads

239

Readme

log-animate

VERSION

LICENSE

AUTHOR

log-animate

log-animate is a lightweight, zero-dependency logging utility, thoughtfully crafted by Naqvi. This package enables developers to easily display dynamic animations, progress bars, timers, and styled messages in the console. Built entirely from scratch without the use of any external libraries, log-animate offers a simple yet powerful way to enhance terminal output with customizable text and background colors.

Key Features:

  • Zero dependencies: Fully self-contained, with no reliance on external packages.
  • Customizable console output: Effortlessly modify text and background colors to suit your needs.
  • Dynamic animations: Includes built-in support for loading animations, progress bars, timers, and spinners.

Installation 🏭

To install the package, run the following command:

npm install log-animate

Usage 😃

Importing the log package

import logAnimate, {logEnd} from "log-animate";

Example 1: Loading Animation ⌛

This example demonstrates how to show a loading animation in the console.

const loader = [
  "loading .",
  "loading . .",
  "loading . . .",
  "loading . . . .",
  "loading . . . . .",
];
let index = 0;

setInterval(() => {
  const item = loader[index++ % loader.length];
  logAnimate(item);
}, 1000);

Example 2: Progress Bar 🟩🟩🟩🟩🟩

This example simulates a progress bar, updating every second.

const progress = ["🟩", "🟩🟩", "🟩🟩🟩", "🟩🟩🟩🟩", "🟩🟩🟩🟩🟩"];
let count = 0;

let intervalProgress = setInterval(() => {
  const item = progress[count++ % progress.length];
  logAnimate(`Progress : [${[item]}${"  ".repeat(progress.length - count)}] ${count * 20}%`);
  
  if (count === progress.length) {
    clearInterval(intervalProgress);
    logEnd()
  }
}, 1000);

Example 3: Timer Animation ⏰

Displays a timer that cycles through different clock emojis and times.

const timerLoader = [
  "🕧", "🕐", "🕛", "🕜", "🕑", "🕝", "🕒", "🕞", "🕓", "🕟", 
  "🕔", "🕠", "🕕", "🕡", "🕖", "🕢", "🕗", "🕣", "🕘", "🕤",
  "🕙", "🕥", "🕚", "🕦", "🕧"
];

const times = [
  "12:00", "12:30", "01:00", "01:30", "02:00", "02:30", "03:00", "03:30",
  "04:00", "04:30", "05:00", "05:30", "06:00", "06:30", "07:00", "07:30",
  "08:00", "08:30", "09:00", "09:30", "10:00", "10:30", "11:00", "11:30", "12:00"
];

let index = 0;

let interval = setInterval(() => {
  const item = timerLoader[index % timerLoader.length];
  logAnimate(`Timer : ${[item]} ${times[index]}`);
  index++;

  if (index === timerLoader.length) {
    clearInterval(interval);
    logEnd()
  }
}, 1000);

Example 4: Spinner 🌀

Displays a simple spinning animation.

const spinner = ["-", "\\", "|", "/"];
let step = 0;

setInterval(() => {
  const item = spinner[step++ % spinner.length];
  logAnimate(`Spinner: ${item}`);
}, 100);

Logging with Custom Background and Text Color

You can pass optional arguments to specify background and text colors:

logAnimate("Hello World!", "green", "black");

In this example:

  • The text "Hello World!" will be displayed with a green background and black text.

The available colors are defined in the ANSI color map and can include options such as red, green, yellow, blue, etc.

Example 5: Real-Time Clock 1⩇:2⩇

Logs the current UTC time every second with a green background.

setInterval(() => {
  logAnimate(new Date().toUTCString(), "white","green");
}, 1000);

Example 6: Displaying Logs on Separate Lines with Custom Colors

If you want to print each log on a separate line, you can use the logEnd() function after each logAnimate call. This ensures that every log message is followed by a line break.

import logAnimate,{logEnd } from "log-animate";

// Log the first message with a red background and white text
logAnimate("First Log Message", "red", "white");
logEnd(); // Ends the first log and moves to a new line

// Log the second message with a blue background and white text
logAnimate("Second Log Message", "blue", "white");
logEnd(); // Ends the second log and moves to a new line

This example will display the first log message, move to the next line, and then display the second log message on a new line.

Result:

  • The first log ("First Log Message") is printed with a red background and white text, followed by a line break.
  • The second log ("Second Log Message") is printed on the next line with a blue background and white text.

By using logEnd(), you ensure that each log message ends and moves to the next line, as expected.

Author ✍️

**Naqvi 🇩🇪 **

Contribute 🤝

You can fork this repo and send me a PR.