
Research
/Security News
Laravel Lang Compromised with RCE Backdoor Across 700+ Versions
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.
@armit/logger
Advanced tools
Simple, pretty and powerful logger for nodejs
Initialize
import { logger } from "@armit/logger";
logger.debug("hello", "context");
And customized adapter for nodejs
import { Logger } from "@armit/logger";
import { StdoutAdapter } from "@armit/logger/node";
const logger = new Logger({
logLevel: LogLevel.Warn,
adapter: new StdoutAdapter({
formatStrategy: new TerminalFormatStrategy(),
}),
});
logger.debug("hello", "context");
And customized adapter for web
import { Logger } from "@armit/logger";
import { ConsoleAdapter } from "@armit/logger/web";
const logger = new Logger({
logLevel: LogLevel.Warn,
adapter: new ConsoleAdapter({
formatStrategy: new ConsoleFormatStrategy(),
}),
});
logger.debug("hello", "context");
FAQs
Simple, pretty and powerful logger for nodejs
The npm package @armit/logger receives a total of 313 weekly downloads. As such, @armit/logger popularity was classified as not popular.
We found that @armit/logger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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
Laravel Lang packages were compromised with an RCE backdoor across hundreds of versions, exposing cloud, CI/CD, and developer secrets.

Security News
Socket found a malicious postinstall hook across 700+ GitHub repos, including PHP packages on Packagist and Node.js project repositories.

Security News
Vibe coding at scale is reshaping how packages are created, contributed, and selected across the software supply chain