
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Pure JS growlish notifications with zero dependencies, simple API written in TypeScript.
Project has migrated to @unaxiom/unnotify. This package is only for legacy purposes.
Pure JS growlish notifications with zero dependencies, simple API written in TypeScript. No jQuery needed either.
user@username ~> npm install unnotify --save
In your typescript files, import as:
import * as unnotify from 'unnotify';
<script src="dist/unnotify.min.js" type="text/javascript"></script>
// Initialization is required just once across all the files.
unnotify.init();
// To display a notification
var notificationID = unnotify.show('This is the Title', 'This is the content', {
type: 'success' | 'info' | 'warning' | 'danger' | 'custom',
timeout: 5000, // Number of milliseconds for which this notification needs to be displayed. If value is 0, then it won't be automatically destroyed.
customClass: '', // (**Optional**) Name of the custom class that will be used instead of builtin classes. For this to be used, **type** should be set to 'custom'.
animateIn: 'lightSpeedIn', // (**Optional**) Name of the animation class (from animate.css) that needs to be used while creating the notification.
animateOut: 'bounceOut', // (**Optional**) Name of the animation class (from animate.css) that needs to be used while destroying the notification.
})
// To close the notification programatically
unnotify.destroy(notificationID);
user@username ~> npm install
user@username ~> gulp
Make necessary code changes in unnotify.ts
FAQs
Pure JS growlish notifications with zero dependencies, simple API written in TypeScript.
We found that unnotify 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.