
Security News
Cline CLI npm Package Compromised via Suspected Cache Poisoning Attack
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.
Handles logging for different environments: development, staging & production.
Handles colourful logging to the console for different log levels without needing to put if statements and console logs throughout your code.
// No more of this:
if (process.env.NODE_ENV === 'development') { console.log('My log message.'); }
// Now we have this:
log.debug('My log message.');
At the top of your application entry point you need to initialise Log-Ninja with a log level, before you require any other files in your application:
const log = require('log-ninja').init('debug');
log.info('Some information...');
Then in any other files in your application you just require Log-Ninja again to get the already initialised version:
const log = require('log-ninja');
// Will be output because "warn" has a lower log level than "debug".
log.warn('A warning 😮');
// Will NOT be output because "verbose" has a higher log level than "debug".
log.verbose('Lots and lots of detail.');
Log-Ninja supports the following log levels:
| ID | Level | Function |
|---|---|---|
| fatal | 0 | log.fatal(string1, string2, ...) |
| error | 1 | log.error(string1, string2, ...) |
| warn | 2 | log.warn(string1, string2, ...) |
| info | 3 | log.info(string1, string2, ...) |
| debug | 4 | log.debug(string1, string2, ...) |
| verbose | 5 | log.verbose(string1, string2, ...) |
| silly | 6 | log.silly(string1, string2, ...) |
Each of the functions support multiple strings which will be concatenated together with spaces (the same way console.log() works).
If you inintialise Log-Ninja like .init('verbose') or .init(6) then ALL logs will be output to the console.
If you inintialise Log-Ninja like .init('error') or .init(1) then only error and fatal logs will be output to the console.
If you don't want colours to be output you can pass a second parameter to .init() like so:
const log = require('log-ninja').init('debug', {
colours: false,
});
Log-Ninja comes with a few other functions to make logging to the console a little bit easier:
| Function | Description |
|---|---|
log.title(string1, string2, ...) | Outputs an important message in bold and underlined. |
log.important(string1, string2, ...) | Outputs an important information in bold. |
log.success(string1, string2, ...) | Outputs a success message. |
log.final(string1, string2, ...) | Outputs the final success message of an execution. |
log.json(object1, object2, ...objectN) | Outputs JSON pretty printed for every object provided. |
log.space() | Outputs a blank line. |
log.raw(aSingleString) | Outputs a single string to stdout without any colours and without a trailing line break. |
log.rawError(aSingleString) | Outputs a single string to stderr without any colours and without a trailing line break. |
log.box(status, message) | Outputs a status followed by a message. Valid statuses are "ok", "fail", "warn" and "info". |
FAQs
Handles logging for different environments: development, staging & production.
The npm package log-ninja receives a total of 19 weekly downloads. As such, log-ninja popularity was classified as not popular.
We found that log-ninja 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.

Security News
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.