
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
vanillatoasts
Advanced tools
Create toasts & notifications on your website with ease. This library is extremely lightweight and depends on no other library. Simply load the script and css to your page, and use the simple API to start launching toasts on your page.
Check it out: http://alexkvazos.github.io/VanillaToasts/
$ npm install vanillatoasts
var VanillaToasts = require('vanillatoasts');
Don't forget to include the CSS file!
<link rel="stylesheet" href="/path/to/vanillatoasts/vanillatoasts.css">
// Create a toast
let toast = VanillaToasts.create({
title: 'Welcome to my site',
text: 'This toast will hide after 5000ms or when you click it',
type: 'warning', // success, info, warning, error / optional parameter
icon: '/img/alert-icon.jpg', // optional parameter
timeout: 5000, // hide after 5000ms, // optional parameter
callback: function() { ... } // executed when toast is clicked / optional parameter
});
// Hides the toast instantly
toast.hide()
// Timeout a toast at a later time
VanillaToasts.setTimeout(toast.id, 1000);
To set a different position for the toast, use the positionClass
property on the options of VanillaToast.
// Create a toast
let toast = VanillaToasts.create({
title: 'Welcome to my site',
text: 'This toast will hide after 5000ms or when you click it',
positionClass: 'bottomLeft'
});
You can use any of the following values for the positionClass
property:
FAQs
Agnostic Javascript Library for Website Notifications
The npm package vanillatoasts receives a total of 2,031 weekly downloads. As such, vanillatoasts popularity was classified as popular.
We found that vanillatoasts 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.