项目作者: luileito

项目描述 :
Display notifications in the browser.
高级语言: JavaScript
项目地址: git://github.com/luileito/informer.git
创建时间: 2019-07-07T09:42:03Z
项目社区:https://github.com/luileito/informer

开源协议:MIT License

下载


informer

Display notifications in the browser.

Examples

  1. var notification = new Informer();
  2. // Default appearance.
  3. notification.show('Hi there!');
  4. // Custom position.
  5. notification.show('Hi there!', {
  6. pos: 'bottom-right',
  7. });

Open test.html to see all the available configuration options,
including e.g. css properties, setting a delay, listening to events, etc.

Tests

Run npm test and then open test.html with your browser.

Documentation

Run npm run docs to generate the documentation in the docs directory (autogenerated).

Note: You need jsdoc to run this command. If that’s not the case, run [sudo] npm i -g jsdoc.

Minification

Run npm run dist to create the assert.min.js file.
This will optimize file requests if you use this lib in a browser.

Note: You need uglifyjs to run this command. If that’s not the case, run [sudo] npm i -g uglify-js.

Code linting

Run npm run lint to analyze the source code for potential errors.

Note: You need eslint to run this command. If that’s not the case, run [sudo] npm i -g eslint.

License

This libray is released with the MIT license.
The only requirement is that you keep my copyright notice intact when you repurpose, redistribute, or reuse this code.