Skip to content

A light and easy to use notifications library for Angular 2. It features both regular page notifications (toasts) and push notifications.

License

Notifications You must be signed in to change notification settings

Ottunger/angular2-notifications

 
 

Repository files navigation

Angular2-Notifications

A light and easy to use notifications library for Angular 2. It features both regular page notifications (toasts) and push notifications.

Build Status NPM Version NPM Downloads

Table of Contents

Example

Take a look at the live demo here: Live Demo You can also clone this repository and check out the example folder.

Setup

Install the library

npm install --save angular2-notifications
# Or using Yarn for a faster installation
yarn add angular2-notifications

SystemJS

Map the library in your system.config.js if you're using SystemJs.

var map = {
    'angular2-notifications': 'node_modules/angular2-notifications'
}

var packages = {
    'angular2-notifications': { main: './dist/index.js', defaultExtension: 'js' }
}

Webpack

If you're using Webpack >= 2, just include the library in your main.ts or vendor.ts file

import 'angular2-notifications';

Documentation

About

A light and easy to use notifications library for Angular 2. It features both regular page notifications (toasts) and push notifications.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 88.3%
  • JavaScript 10.7%
  • Other 1.0%