
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Alerts and logs for your projects, nark will tell you when something goes wrong or an important event happens
Send alerts (emails) when something goes terrible wrong or an important event happens in your app, it also helps to keep track of the logs of your application to generate reports with that information.
Nark uses nodemailer to send email alerts and sequelize to store all the logs with additional information.
npm install nark
Enter your own credentials.
var Nark = require('nark');
nark = Nark.config({
app: 'Name of your project'
reportTo:'jhondoe@xyz.com',
mailSettings:{
service: 'Gmail',
auth: {
user: 'alerts@gmail.com',
pass: '123456'
}
},
dbSettings:{
database:'mydb',
user:'myuser',
password:'mypasswd',
host:'localhost'
}
});
Save log and print it:
nark.log('Hola bartola');
You need to save additional information?
nark.log('Print a table for me please',{
'Name':'Bartola',
'Email':'barty@aol.com'
})
It will print something like this:
┌───────┬───────────────┐
│ Field │ Value │
├───────┼───────────────┤
│ Name │ Bartola │
├───────┼───────────────┤
│ Email │ barty@aol.com │
└───────┴───────────────┘
Save a warning and print it in console
nark.warning('this is a warning that won\'t be sent');
Important message, will be saved in your database, printed in console and sent by email
nark.important('This is an important message that will be sent to the "reportTo" value');
Errors, when shit hit the fan :/
nark.danger('Bad news :(');
Do you need to send additional information? nark can help you
nark.important('Important message with extra information',{foo:123123,bar:4234234});
The information will arrive to your emails like this
FAQs
Alerts and logs for your projects, nark will tell you when something goes wrong or an important event happens
The npm package nark receives a total of 0 weekly downloads. As such, nark popularity was classified as not popular.
We found that nark 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.