@robinpath/notify
v0.1.2
Published
Notify module for RobinPath.
Readme
@robinpath/notify
Notify module for RobinPath.
Why use this module?
The notify module lets you:
- send
- sendUrgent
- sendSilent
- beep
- say
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/notifyQuick Start
No credentials needed — start using it right away:
notify.sendUrgentAvailable Functions
| Function | Description |
|----------|-------------|
| notify.send | send |
| notify.sendUrgent | sendUrgent |
| notify.sendSilent | sendSilent |
| notify.beep | beep |
| notify.say | say |
| notify.alert | alert |
| notify.confirm | confirm |
| notify.prompt | prompt |
| notify.clipboard | clipboard |
| notify.getClipboard | getClipboard |
Examples
sendUrgent
notify.sendUrgentsendSilent
notify.sendSilentbeep
notify.beepIntegration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/notify";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
notify.sendUrgent
`);Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/slack— Slack module for complementary functionality@robinpath/discord— Discord module for complementary functionality@robinpath/teams— Teams module for complementary functionality@robinpath/telegram— Telegram module for complementary functionality@robinpath/whatsapp— WhatsApp module for complementary functionality
License
MIT
