
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
@thetimes/logless
Advanced tools
Logless is a lightweight logging library specially crafted for serverless apps.
npm install --save @thetimes/logless
const loggerFactory = require("@thetimes/logless");
const config = { logLevel: "debug" };
const log = loggerFactory(config, requestID);
log("something's up!");
By default logless uses console.log
as a log function. But you can define your own by passing it as a config parameter:
const loggerFactory = require("@thetimes/logless");
const myCustomLogFunction = msg => process.stdout.write(msg);
const config = {
logLevel: "warn",
logFn: myCustomLogFunction
};
const log = loggerFactory(config, requestID);
log("something's up!");
Available log levels: silly|debug|verbose|info|warn|error
factory(config, requestId)
:
config
(object): { logLevel, logFn }
logLevel
(string): the level of logging. All levels below this will not be loggedlogFn
(function): custom log function (if ommited uses console.log
)requestId
(string): the id of the request being loggedReturns a log function.
log(message)
:
message
(string): the message to be loggedReturns void.
See the CONTRIBUTING.md for a breakdown of the project
FAQs
A simple logger
The npm package @thetimes/logless receives a total of 17 weekly downloads. As such, @thetimes/logless popularity was classified as not popular.
We found that @thetimes/logless demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.