
Product
Socket Now Protects the Chrome Extension Ecosystem
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
console-hue
Advanced tools
Supply Chain Security
Vulnerability
Quality
Maintenance
License
Unpopular package
QualityThis package is not very popular.
Found 1 instance in 1 package
This tiny module is basically an improved version of the native console.log
, adding colour support for different type of messages and a "Stringify" functionality by default for Objects
and Arrays
.
You can install with [npm]:
$ npm install --save console-hue
When you import the module, the following methods will be exposed:
const consoleh = require('console-hue')
{ error: [Function],
success: [Function],
warn: [Function],
debug: [Function],
log: [Function],
blue: [Function],
pink: [Function],
red: [Function],
green: [Function],
yellow: [Function],
cyan: [Function] }
And then you can use consoleh
with any of the previous methods to get a colourful reply in the console:
> const consoleh = require('console-hue')
// Green output
consoleh.success('This message should be green')
// Red output
consoleh.error('This message should be red')
// Yellow output
consoleh.warning('This message should be yellow')
As described before the module will attempt to "Stringify" the Arrays and Objects passed in the message sent to the module. You can override this behaviour by passing true
as the second parameter:
> const consoleh = require('console-hue')
// With default Stringigy behaviour
consoleh.log({fn: function(msg) {console.log(msg)}})
{}
// Getting the original msg without Stringigy
consoleh.log({fn: function(msg) {console.log(msg)}}, true)
[object Object]
Copyright © 2019, Juan Convers. Released under the MIT License.
FAQs
Description
The npm package console-hue receives a total of 59 weekly downloads. As such, console-hue popularity was classified as not popular.
We found that console-hue 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.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.