os-notification
v1.0.5
Published
Easily notify your message on your defined time. It can support apple, windows and linux operation systems
Downloads
2
Maintainers
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:
const { notify } = require('os-notification')
notify(
"Example message", // message,
`${10 * 1000}` // execute time 10sec
)