
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
angular-ui-notifications
Advanced tools
This is a package designed to allow you to produce notifications on your website. To get started run
This is a package designed to allow you to produce notifications on your website. To get started run
npm install angular-ui-notifications --save
Once installed link your application to the following path.
<script src='node_modules/angular-ui-notifications/dist/angular-ui-notifications.min.js'></script>
In order for the icons to display properly ensure you require in the css file provided with the package.
<link rel='stylesheet' href='node_modules/angular-ui-notifications/dist/css/main.min.css'>
//Firstly we need to inject the angular-ui-notifications service into our application
angular.module("exampleApp", ['angular-ui-notifications'])
// once we've done that we have access to the popups service which
// provides our main functionality.
.controller("main", ['$scope', 'popups', function($scope, popups){
$scope.info = function(msg){
// we can pass two parameters into the popups functionality
// msg - the message we want to display
// true / false - this boolean indicates whether we want the message
// to stay on the page indefinitely or not.
return popups.info(msg, true);
};
// Examples with the other function types
$scope.success = function(msg){
return popups.success(msg);
};
$scope.warning = function(msg){
return popups.warning(msg);
};
$scope.error = function(msg){
return popups.error(msg)
};
}])
info - this produces an info style notification
success - this produces a success style notification
warning - this produces a warning style notification
error - this produces an error style notification
destroy - this removes the notification from the DOM with a fade effect. It takes place over 400ms
setNotificationTimer - a method to allow you to to increase / decrease the time notifications are shown for
setIconClasses - a method to allow you to replace the default icons.
Better SCSS support for the alert disappearing / appearing and moving effects
Better animation effects
FAQs
This is a package designed to allow you to produce notifications on your website. To get started run
The npm package angular-ui-notifications receives a total of 10 weekly downloads. As such, angular-ui-notifications popularity was classified as not popular.
We found that angular-ui-notifications 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.