
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
ONE LOGGER TO RULE THEM ALL ...
The aim of Loggerize (also known as LoggerizeJS) was to create a universal JavaScript Logging Library simple enough for users who only began programming yesterday, yet comprehensive enough to satisfy even the most demanding and experienced coders.
Full tutorials can be found on the Loggerize WIKI coupled with comprehensive documentation in the repository's docs directory.
npm i loggerize
For those not interesting in reading the documentation/tutorials, see below for the simplest way to immediately get up and running with the most basic logger.
var Loggerize = require("loggerize");
//Create Basic Logger
let logger = Loggerize.createLogger("myLogger");
// Outputs => 'debug Successfully Logged'
logger.debug("Successfully Logged");
Likewise, see below for how to quickly start logging Connect/Express Middleware. Log message will output according to the Apache common log format.
var app = require('express')();
var loggerize = require("loggerize");
// Call middleware logger directly from the library
app.use(loggerize.mw());
app.get('/', function(req, res){
res.send('Hello World!')
});
//Start listening on port 3000
app.listen(3000, function(){
console.log("App listening on port 3000!")
});
To run the unit tester and the linter, navigate to the loggerize sub-directory of the
node_modules directory (cd /path/to/node_modules/loggerize) and run the
commands below:
Testing with mocha: npm test
Linting with eslint: npm run lint
Loggerize uses SemVer for versioning. For the versions available, see the tags on this repository.
Please report all issues and bugs to https://github.com/ghosthack13/loggerize/issues
As of now the best way to contribute is by donating (see below). Donations do not need to be financial. It can be donating server space to test different operating systems, a subscription to loggly to create new log destinations or even a logo design if you are competent in photo editing.
Loggerize will start allowing pull request when the design specification for version 1 is finalized, as there are still internal speed optimizations to implement and I will not want anyone to take their time only to have their code refactored or removed later.
Loggerize was created and maintained by ghosthack13.
If you belive Loggerize has helped you as a developer and/or your organization and would like to see continued upgrades and more features added, please consider making a kind donation via our Patreon.
This project is dual licensed under the GNU AGPLv3 and the Loggerize EULA.
FAQs
A Universal Logger for Application and HTTP/Middleware
The npm package loggerize receives a total of 1 weekly downloads. As such, loggerize popularity was classified as not popular.
We found that loggerize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.