https://github.com/iamlongalong/longnotify
monkey-longnotify
https://github.com/iamlongalong/longnotify
Last synced: 2 months ago
JSON representation
monkey-longnotify
- Host: GitHub
- URL: https://github.com/iamlongalong/longnotify
- Owner: iamlongalong
- Created: 2024-02-19T12:12:48.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-27T13:52:48.000Z (over 1 year ago)
- Last Synced: 2025-03-17T13:50:09.321Z (3 months ago)
- Language: JavaScript
- Size: 68.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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:
😊 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");```