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.
This tiny lib written in Typescript allows you to leave your debugging logs inside your project without worries of removing them for production environment.
npm install --save ts-debug
Debugger
's instance has the exactly same methods as standard console
. Its constructor takes 3 parameters:
console: Console
- object implementing Console interface, e.g. console
or its wrapperisEnabled: boolean = true
- determines if Debugger should be enabled (you shoud pass here false
to prevent displaying console output in production environment)prefix: string = ''
- specifies prefix for console outputs, e.g. "[DEBUG] "
import { Debugger } from 'ts-debug';
const Config = { isProd: false }; // example config in your application
const debug = new Debugger(console, !Config.isProd, '[DEBUG] ');
debug.log('Debugger is enabled!');
debug.warn('An error occured while processing: ', { example: 'object' });
You can see real-life usage of this lib in ngx-store.
throw(error: Error)
- throws usual (sync) error in debug mode and non-blocking (async) otherwiseFor TypeScript 3+ use v1.3+ For older versions use v1.2
FAQs
Configurable console wrapper for Typescript
The npm package ts-debug receives a total of 2,742 weekly downloads. As such, ts-debug popularity was classified as popular.
We found that ts-debug 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
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.