Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@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 16 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.