https://github.com/frantallukas10/os-notification
https://github.com/frantallukas10/os-notification
node-notification notification os terminal-notification
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frantallukas10/os-notification
- Owner: frantallukas10
- License: mit
- Created: 2019-11-06T11:37:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-17T13:46:01.000Z (about 6 years ago)
- Last Synced: 2025-10-20T20:39:38.750Z (4 months ago)
- Topics: node-notification, notification, os, terminal-notification
- Language: JavaScript
- Size: 13.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# os-notification
Easily create notify message in your defined time. It supports apple, windows and linux operation systems. It has support for MacOS, Windows and Linux.






## Installation
```
npm i os-notification -g
```
## Example running:
```
notify message="Example message"
```
default execute time is 0, you can define time when your message has to show, example 10sec like this:
```
notify message="Example message" time="10000"
```
## You can use this package for your next solution like this:
```js
const { notify } = require('os-notification')
notify(
"Example message", // message,
`${10 * 1000}` // execute time 10sec
)
```
## Expected incorrect result will be show in your console like this:

## Expected correct result will show your message:
