Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/luisvinicius167/notti

Dead simple user notification.
https://github.com/luisvinicius167/notti

javascript library notifications

Last synced: 12 days ago
JSON representation

Dead simple user notification.

Awesome Lists containing this project

README

        

# notti

[![npm package](https://img.shields.io/badge/npm-v0.0.5-lightgray.svg)](https://www.npmjs.com/package/notti)

> Don't make me think - Dead simple user notification.

---



[notti Website ➞](https://notti.surge.sh/)

## Why should you use notti?
* Tiny size: 2.2kb
* No external CSS dependency
* No jQuery dependency
* Fully customizable

#### Install

Npm: `npm install notti`
CDN: `https://unpkg.com/[email protected]`

#### The Gist:

```javascript
import { notti } from 'notti';

notti('Hello User!');

notti({
// HTML Element
message: 'Hello! User',
isHTML: true,
style : {
backgroundColor: '#333',
color:'#fff',
bottom: '10px',
right: '10px'
},
onHide: () => {
console.log('Awesome notti.js!')
}
});
```

### API

```javascript
/**
* @name notti
* type Function
* @description Show an notification
* @param {String || Object } The message or customizable Object
*/

notti('Hi Folks!');

// or
const customizable = {
message: 'Hi folks',
style: {
backgroundColor: '#333',
color: '#fff',
top: '10px',
right: '10px',
}
}

notti(customizable);
```

Customizable params

```javascript
/**
* @param {String} message The notification message
* @param {Object} style Customizable style
* @param {Boolean} autoHide Auto hide the notification box
* @param {Boolean} hideOnClick Hide the notification when clicked
* @param {Boolean} isHTML If the message string contains HTML Element
* @param {Integer} delay The notification hide delay time
* @param {Function} onHide The Function that will be called when the notification disappear
**/

const config = {
// required
message: 'Hi Folks' || '

Hi Folks

',
// just true if your message contains HTML Element
isHTML: false, //default
//optional
style: {}, //default
//optional
autoHide: true, //default
//optional
hideOnClick: true, //default
//optional
delay: 2000, //default
//optional
onHide: ()=>{console.log('Awesome notti.js')}
}
```