Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Winston-based Express logging middleware. Extracts basic metadata from the request and logs out on request end (so the status code of an HTTP response is captured).
The usual
npm install winex
Although Winex uses Winston, it does not actually provide winston - the caller must provide a configured Winston logger object. So you get to (and must) choose your own version of Winston to add as a project dependency.
Winex provides a basic middleware hook that attaches a Winston logger to
req.locals._log
that can be used within any middleware or request handlers.
Add the middleware like:
var express = require('express'),
// Real winston logger.
winston = require('winston'),
winLogger = new winston.Logger(),
// Winex wrapper.
winex = require('winex'),
Log = winex.factory(winLogger),
app = express.createServer();
app.configure(function () {
// Log all requests.
app.use(Log.middleware);
});
Winex also provides some express / general exception handlers that will be documented at some point in the future.
Winex is Copyright 2012 Curiosity Media, Inc. Released under the MIT License.
FAQs
Winston-based Express logging middleware.
The npm package winex receives a total of 5 weekly downloads. As such, winex popularity was classified as not popular.
We found that winex demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.