angular-notifier vs angular2-notifications vs ngx-toastr
Angular Notification Libraries
angular-notifierangular2-notificationsngx-toastrSimilar Packages:

Angular Notification Libraries

These libraries provide developers with tools to display notifications in Angular applications. They enhance user experience by delivering timely feedback and alerts, which can be crucial for user interactions, such as form submissions, errors, and confirmations. Each library offers unique features and customization options, making them suitable for different use cases in web applications.

Npm Package Weekly Downloads Trend

3 Years

Github Stars Ranking

Stat Detail

Package
Downloads
Stars
Size
Issues
Publish
License
angular-notifier4,2472451.28 MB393 years agoMIT
angular2-notifications3,729742244 kB812 years agoMIT
ngx-toastr02,586175 kB78a month agoMIT

Feature Comparison: angular-notifier vs angular2-notifications vs ngx-toastr

Customization

  • angular-notifier:

    Angular Notifier allows for basic customization options such as message types and durations, but it is primarily designed for simplicity and ease of use, making it less flexible compared to others.

  • angular2-notifications:

    Angular2 Notifications offers extensive customization capabilities, including custom templates, animations, and the ability to define different styles for various notification types, giving developers more control over the appearance and behavior of notifications.

  • ngx-toastr:

    ngx-toastr excels in customization, providing options for setting the position, duration, and styles of notifications. It supports custom CSS classes, allowing developers to create unique notification designs that fit their application's theme.

Ease of Use

  • angular-notifier:

    Angular Notifier is designed to be user-friendly, with a straightforward API that allows developers to implement notifications quickly without extensive setup, making it ideal for projects that require fast integration.

  • angular2-notifications:

    Angular2 Notifications has a moderate learning curve, requiring some configuration to utilize its full potential, but it provides comprehensive documentation to help developers understand its features and usage.

  • ngx-toastr:

    ngx-toastr is also easy to use, with a simple API for displaying notifications. It requires minimal setup and is well-documented, making it accessible for developers of all skill levels.

Animation Support

  • angular-notifier:

    Angular Notifier provides basic animation support for notifications, but it is limited in terms of transition effects and customization, focusing more on functionality than aesthetics.

  • angular2-notifications:

    Angular2 Notifications offers a variety of animation options for displaying and dismissing notifications, allowing developers to create visually appealing transitions that enhance user engagement.

  • ngx-toastr:

    ngx-toastr includes built-in animations for showing and hiding notifications, with customizable effects that can be tailored to match the application's design, providing a polished user experience.

Notification Types

  • angular-notifier:

    Angular Notifier supports basic notification types, such as success and error messages, but is not as versatile in handling multiple notification categories compared to others.

  • angular2-notifications:

    Angular2 Notifications supports a wide range of notification types, including success, error, info, and warning, allowing developers to categorize messages effectively and improve user understanding of alerts.

  • ngx-toastr:

    ngx-toastr primarily focuses on toast notifications, providing success, error, info, and warning types, which can be easily displayed with minimal configuration, making it suitable for various notification scenarios.

Community and Support

  • angular-notifier:

    Angular Notifier has a smaller community compared to the others, which may result in limited resources and third-party integrations, but it is actively maintained and documented.

  • angular2-notifications:

    Angular2 Notifications has a moderate community presence, with decent documentation and support available, making it easier for developers to find help and resources when needed.

  • ngx-toastr:

    ngx-toastr benefits from a large and active community, providing extensive documentation, tutorials, and community support, which can be invaluable for troubleshooting and learning best practices.

How to Choose: angular-notifier vs angular2-notifications vs ngx-toastr

  • angular-notifier:

    Choose Angular Notifier if you need a simple and easy-to-use notification system that integrates seamlessly with Angular's reactive forms and provides a straightforward API for displaying notifications without complex configurations.

  • angular2-notifications:

    Opt for Angular2 Notifications if you require a more feature-rich solution that supports various types of notifications (like success, error, info) and offers customizable templates, animations, and positioning options for a more tailored user experience.

  • ngx-toastr:

    Select ngx-toastr if you prefer a lightweight, highly customizable toast notification library that allows for easy configuration of duration, position, and styling, suitable for applications that need quick, unobtrusive notifications.

README for angular-notifier

angular-notifier

A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular 2+ application.



Demo

You can play around with this library with this Stackblitz right here.

Angular Notifier Animated Preview GIF




How to install

You can get angular-notifier via npm by either adding it as a new dependency to your package.json file and running npm install, or running the following command:

npm install angular-notifier

Angular versions

The following list describes the compatibility with Angular:

Angular NotifierAngularCompilation
1.x2.xView Engine
2.x4.xView Engine
3.x5.xView Engine
4.x6.xView Engine
5.x7.xView Engine
6.x8.xView Engine
7.x9.xView Engine
8.x10.xView Engine
9.x11.xView Engine
10.x12.xView Engine
11.x13.xIvy (partial mode)
12.x14.xIvy (partial mode)
13.x15.xIvy (partial mode)
14.x16.xIvy (partial mode)




How to setup

Before actually being able to use the angular-notifier library within our code, we have to first set it up within Angular, and also bring the styles into our project.


1. Import the NotifierModule

First of all, make angular-notifier globally available to your Angular application by importing (and optionally also configuring) the NotifierModule the your root Angular module. For example:

import { NotifierModule } from 'angular-notifier';

@NgModule({
  imports: [NotifierModule],
})
export class AppModule {}

But wait -- your probably might want to customize your notifications' look and behaviour according to your requirements and needs. To do so, call the withConfig method on the NotifierModule, and pass in the options. For example:

import { NotifierModule } from 'angular-notifier';

@NgModule({
  imports: [
    NotifierModule.withConfig({
      // Custom options in here
    }),
  ],
})
export class AppModule {}

2. Use the notifier-container component

In addition, you have to place the notifier-container component somewhere in your application, best at the last element of your root (app) component. For example:

@Component({
  selector: 'my-app',
  template: `
    <h1>Hello World</h1>
    <notifier-container></notifier-container>
  `,
})
export class AppComponent {}

Later on, this component will contain and manage all your applications' notifications.


3. Import the styles

Of course we also need to import the angular-notifier styles into our application. Depending on the architecture of your Angular application, you want to either import the original SASS files, or the already compiled CSS files instead - or none of them if you wish to write your own styles from scratch.

The easy way: Import all the styles

To import all the styles, simple include either the ~/angular-notifier/styles.(scss|css) file. It contains the core styles as well as all the themes and notification types.

The advanced way: Only import the styles actually needed

To keep the size if your styles as small as possible (improving performance for the perfect UX), your might instead decide to only import the styles actually needed by our application. The angular-notifier styles are modular:

  • The ~/angular-notifier/styles/core.(scss|css) file is always required, it defines the basic styles (such as the layout)
  • Themes can be imported from the ~/angular-notifier/styles/theme folder
  • The different notification types, then, can be imported from the ~/angular-notifier/styles/types folder




How to use

Using angular-notifier is as simple as it can get -- simple import and inject the NotifierService into every component (directive, service, ...) you want to use in. For example:

import { NotifierService } from 'angular-notifier';

@Component({
  // ...
})
export class MyAwesomeComponent {
  private readonly notifier: NotifierService;

  constructor(notifierService: NotifierService) {
    this.notifier = notifierService;
  }
}

Show notifications

Showing a notification is simple - all your need is a type, and a message to be displayed. For example:

this.notifier.notify('success', 'You are awesome! I mean it!');

You can further pass in a notification ID as the third (optional) argument. Essentially, such a notification ID is nothing more but a unique string tha can be used later on to gain access (and thus control) to this specific notification. For example:

this.notifier.notify('success', 'You are awesome! I mean it!', 'THAT_NOTIFICATION_ID');

For example, you might want to define a notification ID if you know that, at some point in the future, you will need to remove this exact notification.

The syntax above is actually just a shorthand version of the following:

this.notifier.show({
  type: 'success',
  message: 'You are awesome! I mean it!',
  id: 'THAT_NOTIFICATION_ID', // Again, this is optional
});

Hide notifications

You can also hide notifications. To hide a specific notification - assuming you've defined a notification ID when creating it, simply call:

this.notifier.hide('THAT_NOTIFICATION_ID');

Furthermore, your can hide the newest notification by calling:

this.notifier.hideNewest();

Or, your could hide the oldest notification:

this.notifier.hideOldest();

And, of course, it's also possible to hide all visible notifications at once:

this.notifier.hideAll();




How to customize

From the beginning, the angular-notifier library has been written with customizability in mind. The idea is that angular-notifier works the way your want it to, so that you can make it blend perfectly into the rest of your application. Still, the default configuration should already provide a great User Experience.

Keep in mind that angular-notifier can be configured only once - which is at the time you import the NotifierModule into your root (app) module.


Position

With the position property you can define where exactly notifications will appear on the screen:

position: {

  horizontal: {

    /**
     * Defines the horizontal position on the screen
     * @type {'left' | 'middle' | 'right'}
     */
    position: 'left',

    /**
     * Defines the horizontal distance to the screen edge (in px)
     * @type {number}
     */
    distance: 12

  },

  vertical: {

    /**
     * Defines the vertical position on the screen
     * @type {'top' | 'bottom'}
     */
    position: 'bottom',

    /**
     * Defines the vertical distance to the screen edge (in px)
     * @type {number}
     */
    distance: 12

    /**
     * Defines the vertical gap, existing between multiple notifications (in px)
     * @type {number}
     */
    gap: 10

  }

}

Theme

With the theme property you can change the overall look and feel of your notifications:

/**
 * Defines the notification theme, responsible for the Visual Design of notifications
 * @type {string}
 */
theme: 'material';

Theming in detail

Well, how does theming actually work? In the end, the value set for the theme property will be part of a class added to each notification when being created. For example, using material as the theme results in all notifications getting a class assigned named x-notifier__notification--material.

Everyone - yes, I'm looking at you - can use this mechanism to write custom notification themes and apply them via the theme property. For example on how to create a theme from scratch, just take a look at the themes coming along with this library (as for now only the material theme).


Behaviour

With the behaviour property you can define how notifications will behave in different situations:

behaviour: {

  /**
   * Defines whether each notification will hide itself automatically after a timeout passes
   * @type {number | false}
   */
  autoHide: 5000,

  /**
   * Defines what happens when someone clicks on a notification
   * @type {'hide' | false}
   */
  onClick: false,

  /**
   * Defines what happens when someone hovers over a notification
   * @type {'pauseAutoHide' | 'resetAutoHide' | false}
   */
  onMouseover: 'pauseAutoHide',

  /**
   * Defines whether the dismiss button is visible or not
   * @type {boolean}
   */
  showDismissButton: true,

  /**
   * Defines whether multiple notification will be stacked, and how high the stack limit is
   * @type {number | false}
   */
  stacking: 4

}

Custom Templates

If you need more control over how the inner HTML part of the notification looks like, either because your style-guide requires it, or for being able to add icons etc, then you can define a custom <ng-template> which you pass to the NotifierService.

You can define a custom ng-template as follows:

<ng-template #customNotification let-notificationData="notification">
  <my-custom-alert type="notificationData.type"> {{ notificationData.message }} </my-custom-alert>
</ng-template>

In this case you could wrap your own HTML, even a <my-custom-alert> component which you might use in your application. The notification data is passed in as a notification object, which you can reference inside the <ng-template> using the let- syntax.

Inside your component, you can then reference the <ng-template> by its template variable #customNotification using Angular's ViewChild:

import { ViewChild } from '@angular/core';

@Component({
  // ...
})
export class SomeComponent {
  @ViewChild('customNotification', { static: true }) customNotificationTmpl;

  constructor(private notifierService: NotifierService) {}

  showNotification() {
    this.notifier.show({
      message: 'Hi there!',
      type: 'info',
      template: this.customNotificationTmpl,
    });
  }
}

Animations

With the animations property your can define whether and how exactly notification will be animated:

animations: {

  /**
   * Defines whether all (!) animations are enabled or disabled
   * @type {boolean}
   */
  enabled: true,

  show: {

    /**
     * Defines the animation preset that will be used to animate a new notification in
     * @type {'fade' | 'slide'}
     */
    preset: 'slide',

    /**
     * Defines how long it will take to animate a new notification in (in ms)
     * @type {number}
     */
    speed: 300,

    /**
     * Defines which easing method will be used when animating a new notification in
     * @type {'linear' | 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out'}
     */
    easing: 'ease'

  },

  hide: {

    /**
     * Defines the animation preset that will be used to animate a new notification out
     * @type {'fade' | 'slide'}
     */
    preset: 'fade',

    /**
     * Defines how long it will take to animate a new notification out (in ms)
     * @type {number}
     */
    speed: 300,

    /**
     * Defines which easing method will be used when animating a new notification out
     * @type {'linear' | 'ease' | 'ease-in' | 'ease-out' | 'ease-in-out'}
     */
    easing: 'ease',

    /**
     * Defines the animation offset used when hiding multiple notifications at once (in ms)
     * @type {number | false}
     */
    offset: 50

  },

  shift: {

    /**
     * Defines how long it will take to shift a notification around (in ms)
     * @type {number}
     */
    speed: 300,

    /**
     * Defines which easing method will be used when shifting a notification around
     * @type {string}
     */
    easing: 'ease' // All standard CSS easing methods work

  },

  /**
   * Defines the overall animation overlap, allowing for much smoother looking animations (in ms)
   * @type {number | false}
   */
  overlap: 150

}

In short -- the default configuration

To sum it up, the following is the default configuration (copy-paste-friendly):

const notifierDefaultOptions: NotifierOptions = {
  position: {
    horizontal: {
      position: 'left',
      distance: 12,
    },
    vertical: {
      position: 'bottom',
      distance: 12,
      gap: 10,
    },
  },
  theme: 'material',
  behaviour: {
    autoHide: 5000,
    onClick: false,
    onMouseover: 'pauseAutoHide',
    showDismissButton: true,
    stacking: 4,
  },
  animations: {
    enabled: true,
    show: {
      preset: 'slide',
      speed: 300,
      easing: 'ease',
    },
    hide: {
      preset: 'fade',
      speed: 300,
      easing: 'ease',
      offset: 50,
    },
    shift: {
      speed: 300,
      easing: 'ease',
    },
    overlap: 150,
  },
};