1.1.4 ā€¢ Published 6 months ago

awesome-logging v1.1.4

Weekly downloads
65
License
MIT
Repository
github
Last release
6 months ago

npm Build Status Sonar Quality Gate bundle size

awesome-logging

An awesome set of logging and prompting utilities for Node.js.

Motivation šŸ’„

awesome-logging is a collection of fancy text outputs and inputs for CLI tools written in NodeJS. No matter what you want to log to the terminal or what information you need from the user, awesome-logging will help you do so.

  • You want to show the progress of a certain task while also logging messages to the terminal while keeping everything nice and formatted? No problem.
  • You want the user to select one or multiple options of a given list? Sure thing!
  • You want to log messages in the background while showing a fancy animation or a prompt to the user? Go for it!

Features šŸ”„

āœ… Written in TypeScript (Strongly typed)

āœ… Live-update logging messages in a reliable way

āœ… ESM & CJS exports

āœ… Multi-line logging

āœ… Flicker-free output, even on Windows

āœ… Loading animations and progress bars

āœ… Interactive prompts to get user input

āœ… Interrupt currently playing animations with regular log entries

āœ… Extendable design (add your own loggers / prompts)

One example of a multiline logger with many different logger types: (Not particularly pretty, but shows the idea)

multiline example

Built With šŸ”§

Installation šŸ“¦

pnpm i awesome-logging
// or
yarn add awesome-logging
// or
npm i awesome-logging

Docs šŸ“ƒ

Find a bit of documentation here.

Usage Example šŸš€

import { AwesomeLogger } from 'awesome-logging';
// Example: Simple text logging
AwesomeLogger.log('Welcome to awesome-logging!');
const logControl = AwesomeLogger.log('Is this a logging library?');
setTimeout(() => logControl.setText('This is an awesome-logging library!'), 1500);
setTimeout(() => logControl.setText('Cool!'), 3000);

simple text logging

// Example: Simple text logging (with line breaks)
const textA = 'One line of text...';
const textB = 'Multiple\nLines\nof Text!';
let state = true;
const logControl = AwesomeLogger.log(textA);
setInterval(() => {
  state = !state;
  logControl.setText(state ? textA : textB);
}, 1000);

text linebreak logging

// Example: Progress Bar
const logProgressControl = AwesomeLogger.log('progress', {
  totalProgress: 100,
  text: 'Very important progress:'
});

let i = 0;
const interval = setInterval(() => {
  logProgressControl.setProgress(i++);
  if (i === 100) {
    clearInterval(interval);
  }
}, 500);

progress logging

Contributing šŸ§‘šŸ»ā€šŸ’»

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License šŸ”‘

Distributed under the MIT License. See LICENSE.txt for more information.

Contact šŸ“§

Janik Schumacher - @LoaderB0T - linkedin

Project Link: https://github.com/LoaderB0T/awesome-logging

1.1.4

6 months ago

1.1.3

6 months ago

1.1.1

2 years ago

1.1.0

2 years ago

1.1.2

1 year ago

1.0.0

2 years ago

0.5.0

2 years ago

0.4.0

2 years ago

0.5.1

2 years ago

0.3.0

3 years ago

0.2.11

3 years ago

0.2.10-pre2

3 years ago

0.2.10-pre1

3 years ago

0.2.10

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.2.7

3 years ago

0.2.6

3 years ago

0.2.9

3 years ago

0.2.8

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.1.3

3 years ago

0.1.0

3 years ago

0.0.1

3 years ago

0.1.2

3 years ago

0.0.3

3 years ago

0.1.1

3 years ago

0.0.2

3 years ago

0.0.8

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.1-pre2

3 years ago

0.0.1-pre1

3 years ago

0.0.1-pre-alpha9

3 years ago

0.0.1-pre-alpha8

3 years ago

0.0.1-pre-alpha5

3 years ago

0.0.1-pre-alpha4

3 years ago

0.0.1-pre-alpha7

3 years ago

0.0.1-pre-alpha6

3 years ago

0.0.1-pre-alpha3

3 years ago

0.0.1-pre-alpha2

3 years ago

0.0.1-pre-alpha1

3 years ago