
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@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 4 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.