
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.
extended-logger
Advanced tools
Extend console's log, warn, error, info and assert capabilities.
npm i -S extended-logger@9007199254740991.9007199254740991.9007199254740988
# go to each file where you are console log/error etc...
require('extended-logger').installConsole(__dirname, __filename)
# You can use uninstallConsole for uninstalling and going back to older console functions
const consoler = require('./index')
console.log('should write a lot more than just this line...') // single line
consoler.installConsole(__dirname, __filename) // install new console functions
console.log('should write a lot more than just this line...') // three lines: empty, fancy log, actual message
consoler.uninstallConsole() // uninstall
console.log('should write a lot more than just this line...') // back to boring
/* output */
// should write a lot more than just this line...
//
// [simple.test.js 1505751626284]
// should write a lot more than just this line...
// should write a lot more than just this line...
Just run the simple.test.js file in node
MIT © Git Faf 2017 2018
FAQs
Extended logger for nodejs
The npm package extended-logger receives a total of 6 weekly downloads. As such, extended-logger popularity was classified as not popular.
We found that extended-logger 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
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.