Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamlongalong/longnotify
monkey-longnotify
https://github.com/iamlongalong/longnotify
Last synced: 8 days ago
JSON representation
monkey-longnotify
- Host: GitHub
- URL: https://github.com/iamlongalong/longnotify
- Owner: iamlongalong
- Created: 2024-02-19T12:12:48.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-02-27T13:52:48.000Z (10 months ago)
- Last Synced: 2024-11-14T05:14:56.178Z (about 1 month 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:
![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");```