Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/iamlongalong/longnotify

monkey-longnotify
https://github.com/iamlongalong/longnotify

Last synced: 8 days ago
JSON representation

monkey-longnotify

Awesome Lists containing this project

README

        

# longnotify

W( ̄_ ̄)W

🤯 I JUST WANT TO using notify simply 🤯

if you are in broswer, just using:
> longnotify(level : "info" | "success" | "warn" | "warning" | "alert" | "error" , message: str)

for example:
```js
longnotify("info", "📢 hello world info");
longnotify("warn", "🚸 hello world warn");
longnotify("alert", "🔥 hello world alert");
```

looking like this:
![using-case](asserts/longnotify-using-case.png)

😊 hope you enjoy it ~

## using in html

```html

longnotify("info", "📢 hello world info");
longnotify("success", "✅ hello world success");
longnotify("warn", "🚸 hello world warn");
longnotify("warning", "🚸 hello world warning");
longnotify("error", "❌ hello world error");
longnotify("alert", "🔥 hello world alert");

```