Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ptkdev/ptkdev-logger
๐ฆ Beautiful Logger for Node.js: the best alternative to the console.log statement
https://github.com/ptkdev/ptkdev-logger
console console-log json log log-statement logger logging logs node node-js node-logger nodejs pino pinojs
Last synced: 4 days ago
JSON representation
๐ฆ Beautiful Logger for Node.js: the best alternative to the console.log statement
- Host: GitHub
- URL: https://github.com/ptkdev/ptkdev-logger
- Owner: ptkdev
- License: other
- Created: 2020-02-14T13:14:22.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-08T14:33:45.000Z (over 1 year ago)
- Last Synced: 2025-01-19T19:07:09.843Z (11 days ago)
- Topics: console, console-log, json, log, log-statement, logger, logging, logs, node, node-js, node-logger, nodejs, pino, pinojs
- Language: JavaScript
- Homepage: https://npmjs.com/package/@ptkdev/logger
- Size: 2.62 MB
- Stars: 178
- Watchers: 6
- Forks: 9
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
[![Beautiful Logger for Node.js: the best alternative to the console.log statement](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/ptkdev-logger-logo.png)](https://www.npmjs.com/package/@ptkdev/logger)
# ๐ฆ Beautiful Logger for Node.js
[![](https://img.shields.io/badge/version-v1.8.0-lightgrey.svg)](https://github.com/ptkdev/ptkdev-logger/releases) [![](https://img.shields.io/npm/v/@ptkdev/logger.svg)](https://www.npmjs.com/package/@ptkdev/logger) [![](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://github.com/ptkdev/ptkdev-logger/blob/master/LICENSE.md) [![](https://img.shields.io/badge/ES-9-F7DF1E.svg)](https://wikipedia.org/wiki/ECMAScript) [![](https://snyk.io/test/github/ptkdev/ptkdev-logger/badge.svg)](https://snyk.io/test/github/ptkdev/ptkdev-logger) [![](https://discordapp.com/api/guilds/383373985666301975/embed.png)](http://discord.ptkdev.io)
> The best alternative to the console.log statement
## ๐ Support: Donate
> This project is **free**, **open source** and I try to provide excellent **free support**. Why donate? I work on this project several hours in my spare time and try to keep it up to date and working. **THANK YOU!**
[![](https://img.shields.io/badge/donate-paypal-005EA6.svg?logo=paypal)](https://www.paypal.me/ptkdev) [![](https://img.shields.io/badge/donate-patreon-F87668.svg?logo=patreon)](https://www.patreon.com/ptkdev) [![](https://img.shields.io/badge/donate-sponsors-ea4aaa.svg?logo=github)](https://github.com/sponsors/ptkdev/) [![](https://img.shields.io/badge/donate-ko--fi-29abe0.svg?logo=ko-fi)](https://ko-fi.com/ptkdev)
![](https://img.shields.io/badge/bitcoin-35jQmZCy4nsxoMM3QPFrnZePDVhdKaHMRH-E38B29.svg?logo=bitcoin) ![](https://img.shields.io/badge/ethereum-0x8b8171661bEb032828e82baBb0B5B98Ba8fBEBFc-4E8EE9.svg?logo=ethereum)
## ๐ Menu
- ๐ก [Features](#-features)
- ๐ [Screenshot](#-screenshot)
- ๐ [How to use](#-installation)
- ๐ [Documentation](#-documentation)
- - ๐งฐ [Options](#-options)
- - ๐ [Methods](#-methods)
- - ๐จ [Palette](#-palette)
- - ๐คนโโ๏ธ [LogRotate](#-logrotate)
- ๐จโ๐ป [Contributing](#-contributing)
- ๐ [Known Bugs](https://github.com/ptkdev/ptkdev-logger/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
- ๐ป Community:
- [Discord](http://discord.ptkdev.io) ([๐ฌ๐ง English Channel](https://discord.gg/tWtqt4B) | [๐ฎ๐น Italian Channel](https://discord.gg/q29uZnm) | [๐ต๐ฑ Polish Channel](https://discord.gg/akjuWJX))## ๐ก Features
- [โ๏ธ] Easy to use
- [โ๏ธ] MIT License
- [โ๏ธ] Palette (๐จ Customize colors)
- [โ๏ธ] Logrotate ๐คนโโ๏ธ
- [โ๏ธ] Typescript support
- [โ๏ธ] The best alternative to the console.log statement
- [โ๏ธ] Write stdout logs to file (supported format: text/log and json)
- [โ๏ธ] The JSON logs format is compatible with [pinojs](https://github.com/pinojs/pino)
- [โ๏ธ] Translations: ๐ฌ๐ง ๐ฎ๐น ๐ต๐ฑ ๐ช๐ธ ๐ต๐น ๐ท๐บ ๐ฉ๐ช ๐ซ๐ท (Help me โค๏ธ)## ๐ Screenshot
[![Beautiful Logger for Node.js](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/screenshot/ptkdev-logger-screen1.png)](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/screenshot/ptkdev-logger-screen1.png)
## ๐ Installation
1. In your node project run: `npm install @ptkdev/logger --save`
2. Usage:```javascript
const Logger = require("@ptkdev/logger");
const logger = new Logger();
logger.info("message");
```You can set `options` to `new Logger(options);` example:
```javascript
const Logger = require("@ptkdev/logger");const options = {
language: "en",
colors: true,
debug: true,
info: true,
warning: true,
error: true,
sponsor: true,
write: true,
type: "log",
rotate: {
size: "10M",
encoding: "utf8",
},
path: {
// remember: add string *.log to .gitignore
debug_log: "./debug.log",
error_log: "./errors.log",
},
};const logger = new Logger(options);
logger.info("message");
```See folder `examples`, run with `node example.js`. Below is available a description of `options` values.
## ๐งฐ Options
| Parameter | Description | Values | Default value | Available since |
| --------- | ------------------------------------------------------- | ------------------------------------- | ----------------------------------------------------------- | --------------- |
| language | Set language of log type | en / it / pl / es / pt / de / ru / fr | en | **v1.0.0** |
| colors | Enable colors in terminal | true / enabled / false / disabled | true | **v1.0.0** |
| debug | Enable all logs with method debug | true / enabled / false / disabled | true | **v1.0.0** |
| info | Enable all logs with method info | true / enabled / false / disabled | true | **v1.0.0** |
| warning | Enable all logs with method warning | true / enabled / false / disabled | true | **v1.0.0** |
| error | Enable all logs with method errors | true / enabled / false / disabled | true | **v1.0.0** |
| sponsor | Enable all logs with method sponsor | true / enabled / false / disabled | true | **v1.0.0** |
| write | Write the logs into a file, you need set path values | true / enabled / false / disabled | false | **v1.0.0** |
| type | Format of logs in files | log / json | log | **v1.0.0** |
| rotate | Rotates the log files when size exceeds this value | `10B` / `10K` / `10M` / `10G` | `"rotate": {"size": "10M"}` | **v1.5.0** |
| palette | Change palette with hexcode colors | [Object](#-palette) | default palette | **v1.5.0** |
| path | If write is true, the library writes the logs to a path | Object | `{"debug_log": "./debug.log", "error_log": "./errors.log"}` | **v1.0.0** |## ๐ Methods
| Method | Description | Parameters |
| --------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------- |
| **debug**(`message`, `tag`) | `message`: Display debug log message
`tag`: prefix of message | `message`: string (mandatory)
`tag`: string (optional) |
| **info**(`message`, `tag`) | `message`: Display info log message
`tag`: prefix of message | `message`: string (mandatory)
`tag`: string (optional) |
| **warning**(`message`, `tag`) | `message`: Display warning log message
`tag`: prefix of message | `message`: string (mandatory)
`tag`: string (optional) |
| **error**(`message`, `tag`) | `message`: Display errors log message
`tag`: prefix of message | `message`: string (mandatory)
`tag`: string (optional) |
| **sponsor**(`message`, `tag`) | `message`: Display sponsor log message
`tag`: prefix of message | `message`: string (mandatory)
`tag`: string (optional) |
| **stackoverflow**(`message`, `tag`, `error_string`) | `message`: Display stackoverflow log message
`tag`: prefix of message
`error_string`: query for stackoverflow, if empty we use message param | `message`: string (mandatory)
`tag`: string (optional)
`error_string`: string (optional) |
| **docs**(`message`, `url`, `tag`) | `message`: Display docs log message
`url`: link of documentation
`tag`: prefix of message | `message`: string (mandatory)
`url`: string (optional)
`tag`: string (optional) |## ๐จ Palette
[![Beautiful Logger for Node.js](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/screenshot/ptkdev-logger-palette.png)](https://raw.githubusercontent.com/ptkdev/ptkdev-logger/nightly/.github/assets/screenshot/ptkdev-logger-palette.png)
You can customize palette colors with Object `palette` and with hexcode values.
- `label` is text on left (INFORMATION / ERROR / DOCS, etc..)
- `text` is message of log on right
- `background` is background color on left side```javascript
{
...
"palette": {
"info": { // method name
"label": "#ffffff", // label on left
"text": "#4CAF50", // log message
"background": "#4CAF50" // background
},
"warning": {
"label": "#ffffff",
"text": "#FF9800",
"background": "#FF9800"
},
"error": {
"label": "#ffffff",
"text": "#FF5252",
"background": "#FF5252"
},
"stackoverflow": {
"label": "#ffffff",
"text": "#9C27B0",
"background": "#9C27B0"
},
"docs": {
"label": "#ffffff",
"text": "#FF4081",
"background": "#FF4081"
},
"debug": {
"label": "#ffffff",
"text": "#1976D2",
"background": "#1976D2"
},
"sponsor": {
"label": "#ffffff",
"text": "#607D8B",
"background": "#607D8B"
},
"time": {
"label": "#ffffff",
"background": "#795548"
}
}
...
}
```See folder `examples`, run with `node example.js`.
## ๐คนโโ๏ธ LogRotate
Rotates the file when size exceeds 10 megabytes (optional, default 10M - values: 10B (byte) / 10K (kilobyte)/ 10M (megabyte)/ 10G (gigabyte))
```javascript
...
"rotate": {
"size": "10M",
"encoding": "utf8"
},
...
```## ๐ Documentation
Run `npm run docs`
## ๐ Sponsors
Support this project by becoming a sponsor. ๐ Become a sponsor on [patreon](https://www.patreon.com/join/ptkdev) or become top3 sponsor on [ko-fi](https://ko-fi.com/ptkdev). Your logo will show up here with a link to your website.
[![](https://api.ptkdev.io/backers/sponsor1.png)](https://api.ptkdev.io/backers/sponsor1.html) [![](https://api.ptkdev.io/backers/sponsor2.png)](https://api.ptkdev.io/backers/sponsor2.html) [![](https://api.ptkdev.io/backers/sponsor-kofi1.png)](https://api.ptkdev.io/backers/sponsor-kofi1.html) [![](https://api.ptkdev.io/backers/sponsor-kofi2.png)](https://api.ptkdev.io/backers/sponsor-kofi2.html) [![](https://api.ptkdev.io/backers/sponsor-kofi3.png)](https://api.ptkdev.io/backers/sponsor-kofi3.html) [![](https://api.ptkdev.io/backers/sponsor3.png)](https://api.ptkdev.io/backers/sponsor3.html) [![](https://api.ptkdev.io/backers/sponsor4.png)](https://api.ptkdev.io/backers/sponsor4.html) [![](https://api.ptkdev.io/backers/sponsor5.png)](https://api.ptkdev.io/backers/sponsor5.html) [![](https://api.ptkdev.io/backers/sponsor6.png)](https://api.ptkdev.io/backers/sponsor6.html) [![](https://api.ptkdev.io/backers/sponsor7.png)](https://api.ptkdev.io/backers/sponsor7.html) [![](https://api.ptkdev.io/backers/sponsor8.png)](https://api.ptkdev.io/backers/sponsor8.html) [![](https://api.ptkdev.io/backers/sponsor9.png)](https://api.ptkdev.io/backers/sponsor9.html) [![](https://api.ptkdev.io/backers/sponsor10.png)](https://api.ptkdev.io/backers/sponsor10.html) [![](https://api.ptkdev.io/backers/sponsor11.png)](https://api.ptkdev.io/backers/sponsor11.html) [![](https://api.ptkdev.io/backers/sponsor12.png)](https://api.ptkdev.io/backers/sponsor12.html) [![](https://api.ptkdev.io/backers/sponsor13.png)](https://api.ptkdev.io/backers/sponsor13.html) [![](https://api.ptkdev.io/backers/sponsor14.png)](https://api.ptkdev.io/backers/sponsor14.html) [![](https://api.ptkdev.io/backers/sponsor15.png)](https://api.ptkdev.io/backers/sponsor15.html)
## ๐ฆ Backers
Thank you to all our backers! ๐ Become a backer on [patreon](https://www.patreon.com/join/ptkdev).
[![](https://api.ptkdev.io/backers/backer1.png)](https://api.ptkdev.io/backers/backer1.html) [![](https://api.ptkdev.io/backers/backer2.png)](https://api.ptkdev.io/backers/backer2.html) [![](https://api.ptkdev.io/backers/backer3.png)](https://api.ptkdev.io/backers/backer3.html) [![](https://api.ptkdev.io/backers/backer4.png)](https://api.ptkdev.io/backers/backer4.html) [![](https://api.ptkdev.io/backers/backer5.png)](https://api.ptkdev.io/backers/backer5.html) [![](https://api.ptkdev.io/backers/backer6.png)](https://api.ptkdev.io/backers/backer6.html) [![](https://api.ptkdev.io/backers/backer7.png)](https://api.ptkdev.io/backers/backer7.html) [![](https://api.ptkdev.io/backers/backer8.png)](https://api.ptkdev.io/backers/backer8.html) [![](https://api.ptkdev.io/backers/backer9.png)](https://api.ptkdev.io/backers/backer9.html) [![](https://api.ptkdev.io/backers/backer10.png)](https://api.ptkdev.io/backers/backer10.html) [![](https://api.ptkdev.io/backers/backer11.png)](https://api.ptkdev.io/backers/backer11.html) [![](https://api.ptkdev.io/backers/backer12.png)](https://api.ptkdev.io/backers/backer12.html) [![](https://api.ptkdev.io/backers/backer13.png)](https://api.ptkdev.io/backers/backer13.html) [![](https://api.ptkdev.io/backers/backer14.png)](https://api.ptkdev.io/backers/backer14.html) [![](https://api.ptkdev.io/backers/backer15.png)](https://api.ptkdev.io/backers/backer15.html)
## ๐จโ๐ป Contributing
I โค๏ธ contributions! I will happily accept your pull request! Translations, grammatical corrections (GrammarNazi you are welcome! Yes my English is bad, sorry), etc... Do not be afraid, if the code is not perfect we will work together ๐ฏ and remember to insert your name in `.all-contributorsrc` and `package.json` file.
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Patryk Rzucidลo
๐ป ๐ ๐ ๐
Ilua Chubarov
๐ป
Bruno Kรผmmel
๐ป ๐
Alina Osv
๐
Sylvain Tรฉchenรฉ
๐
Giovanni Cardamone
๐ป
> ๐ฐ In the future, if the donations allow it, I would like to share some of the success with those who helped me the most. For me open source is share of code, share development knowledges and share donations!
## ๐ฒ Tools
[![](https://img.shields.io/badge/portfolio-ptkdev-000000.svg)](https://ptk.dev/)
[![](https://img.shields.io/badge/app-meingifs-E1215B.svg)](https://meingifs.pics/)
[![](https://img.shields.io/badge/stickers-ptkdev-128C7E.svg)](https://stickers.ptkdev.io/)[![](https://img.shields.io/badge/app-social%20manager%20tools-ff7f19.svg)](http://logger.ptkdev.io/)
[![](https://img.shields.io/badge/api-instagram%20bot-895a4d.svg)](https://github.com/ptkdev/ptkdev-logger)
[![](https://img.shields.io/badge/api-twitter%20bot-21B7F4.svg)](https://github.com/social-manager-tools/socialmanagertools-twbot)
[![](https://img.shields.io/badge/api-facebook%20bot-3b5998.svg)](https://github.com/social-manager-tools/socialmanagertools-fbbot)
[![](https://img.shields.io/badge/telegram%20bot-feed%20rss%20for%20wordpress%20&%20medium-00AB6C.svg)](https://github.com/social-manager-tools/socialmanagertools-tgbot)## ๐ Sorry for snake_case
I love snake_case syntax sorry for this ๐ญ don't hate me.
## ๐ซ License
- Code and Contributions have **MIT License**
- Images and logos have **CC BY-NC 4.0 License** ([Freepik](https://it.freepik.com/) Premium License)
- Documentations and Translations have **CC BY 4.0 License**###### Copyleft (c) 2020 [Patryk Rzucidลo](https://ptk.dev) ([@PTKDev](https://twitter.com/ptkdev)) <[[email protected]](mailto:[email protected])>