![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Chip is a Node.js logging library that is designed to be fast, simple and pretty. Its console transport shows little color symbols before your log messages.
Add chip
to your dependencies.
npm install --save chip
Create a stdout logger, and use it.
var log = require('chip')();
log('Use a string.');
log(['Or'], ['an'], ['array']);
log({or: 'json, obviously'});
log.debug('This will be preceded by a magenta diamond thingy.');
log.trace('This will be preceded by a cyan plus.');
log.log('This will be preceded by a grey arrow, as above.');
log.info('This will be preceded by a green check mark.');
log.warn('This will be preceded by a thick yellow asterisk.');
log.error('This will be preceded by a thick red X.');
Customize the message format.
var log = require('chip')();
log.setFormat(function (message, prefix, type) {
return prefix + message + '!';
});
If you specify the optional type
parameter, it will only change the formatter
for that type.
Change the level of log that is shown (default: log
).
var log = require('chip')();
log.setLogLevel('trace');
Setting to a level from this list will enable logs of that level and all
of the levels after it: debug
, trace
, log
, info
, warn
, error
.
Setting the level to nothing
will stop all logs.
Customize prefixes for the console log messages.
require('colors');
var log = require('chip')();
log.setPrefixes({
debug: 'DEBUG '.magenta,
trace: 'TRACE '.cyan,
log: 'LOG '.grey,
info: 'INFO '.green,
warn: 'WARN '.yellow,
error: 'ERROR '.red
});
// You can also get the prefixes:
var prefixes = log.getPrefixes();
Customize the spacing that JSON.stringify uses.
var log = require('chip')();
log.setJsonSpace(' ');
The default is two spaces.
Chip will soon support more transports than stdout
. Hey, it's a start.
FAQs
A tiny Node.js logger
We found that chip 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.