
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@ptkdev/logger
Advanced tools
Beautiful Logger for Node.js: the best alternative to the console.log statement
The best alternative to the console.log statement
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!
npm install @ptkdev/logger --save
const Logger = require("@ptkdev/logger");
const logger = new Logger();
logger.info("message");
You can set options
to new Logger(options);
example:
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",
"path": {
"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 and all logger methods.
Parameter | Description | Values | Default value |
---|---|---|---|
language | Set language of log type | en / it / pl / es / pt / de / ru / fr | en |
colors | Enable colors in terminal | true / enabled / false / disabled | true |
debug | Enable all logs with method debug | true / enabled / false / disabled | true |
info | Enable all logs with method info | true / enabled / false / disabled | true |
warning | Enable all logs with method warning | true / enabled / false / disabled | true |
error | Enable all logs with method errors | true / enabled / false / disabled | true |
sponsor | Enable all logs with method sponsor | true / enabled / false / disabled | true |
write | Write the logs into a file, you need set path values | true / enabled / false / disabled | false |
type | Format of logs in files | log / json | log |
path | If write is true, the library writes the logs to a path | Object | {"debug_log": "./debug.log", "error_log": "./errors.log"} |
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) |
Run npm run docs
Support this project by becoming a sponsor. 🙏 Become a sponsor on patreon or become top3 sponsor on ko-fi. Your logo will show up here with a link to your website.
Thank you to all our backers! 🙏 Become a backer on patreon.
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):
Patryk Rzucidło 💻 🌍 📖 🐛 | Ilua Chubarov 💻 | Bruno Kümmel 💻 🌍 | Alina Osv 🌍 | Sylvain Téchené 🌍 |
💰 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!
I love snake_case syntax sorry for this 😭 don't hate me.
FAQs
Beautiful Logger for Node.js: the best alternative to the console.log statement
We found that @ptkdev/logger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.