Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@alwatr/logger
Advanced tools
Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.
Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.
import { createLogger } from 'https://esm.run/@alwatr/logger';
const logger = createLogger('demo');
function sayHello (name: string) {
logger.logMethodArgs('sayHello', {name});
}
Many of the methods in the logger are no-ops when the debug mode is off.
Please remember to reload the window after changing the debug mode.
Debugging all scopes
window.localStorage?.setItem('ALWATR_LOG', '*');
Debugging specific scope
window.localStorage?.setItem('ALWATR_LOG', 'scope_name');
Debugging some scopes with pattern
window.localStorage?.setItem('ALWATR_LOG', '*alwatr*');
import {createLogger} from 'https://esm.run/@alwatr/logger';
const logger = createLogger('logger/demo', 'green');
logProperty(property, value)
console.debug
property change.
Example:
logger.logProperty('name', 'ali');
logMethod(method)
console.debug
function or method calls.
Example:
function myMethod () {
logger.logMethod('myMethod');
}
logMethodArgs(method, args)
console.debug
function or method calls with arguments.
Example:
function myMethod (a: number, b: number) {
logger.logMethodArgs('myMethod', {a, b});
}
logMethodFull(method, args, result)
console.debug
function or method calls with arguments.
Example:
function add (a: number, b: number): number {
const result = a + b;
logger.logMethodFull('add', {a, b}, result);
return result;
}
incident(method, code, description, ...args)
console.trace
an event or expected accident. (not warn or error)
Example:
logger.incident('fetch', 'abort_signal', 'aborted signal received', {url: '/test.json'});
accident(method, code, description, ...args)
console.warn
an unexpected accident or error that you handled.
Example:
logger.accident('fetch', 'file_not_found', 'url requested return 404 not found', {url: '/test.json'});
error(method, code, errorStack, ...args)
console.error
an unexpected error.
Example:
try {
...
}
catch (err) {
logger.error('myMethod', 'error_code', (err as Error).stack || err, {a: 1, b: 2});
}
logOther(...args)
Simple console.debug
with styled scope.
Example:
logger.logOther('foo:', 'bar', {a: 1});
FAQs
Fancy colorful console debugger with custom scope written in tiny TypeScript, ES module.
The npm package @alwatr/logger receives a total of 573 weekly downloads. As such, @alwatr/logger popularity was classified as not popular.
We found that @alwatr/logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.