Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
bunyan-cloudant
Advanced tools
This is a [bunyan](https://github.com/trentm/node-bunyan) plugin for [Cloudant](https://cloudant.com/). It allows you to 'stream' your bunyan logs to Cloudant.
This is a bunyan plugin for Cloudant. It allows you to 'stream' your bunyan logs to Cloudant.
A "stream" is Bunyan's name for where it outputs log messages
npm install bunyan-cloudant
const bunyan = require('bunyan');
const CloudantStream = require('bunyan-cloudant');
const cloudantStream = new CloudantStream({
cloudant: {
url: process.env.COUCHDB_URL
},
dbName: 'server-logs'
});
export const L = bunyan.createLogger({
name: 'my-app',
streams: [{
stream: process.stdout // stream to stdout
}, {
stream: cloudantStream // and stream to cloudant
}]
});
CloudantStream
takes the following options
{
cloudant: { // required
uri: 'http://user:pass@www.cloudant.com'
},
dbName: 'logs', // required
log: myParentBunyanLogger // optional
}
The cloudant
property (required) must conform to cloudant
's Initialization object. See the
Initialize section.
The dbName
property (required) is the name Cloudant datbase that to 'stream' logs
The log
property (optional) specifies a parent Bunyan logger
FAQs
This is a [bunyan](https://github.com/trentm/node-bunyan) plugin for [Cloudant](https://cloudant.com/). It allows you to 'stream' your bunyan logs to Cloudant.
We found that bunyan-cloudant 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.