pushover-sdk
    Preparing search index...

    Pushover SDK

    A TypeScript SDK for calling Pushover APIs from any JavaScript runtime with fully typed inputs and responses.

    Documentation - GitHub - NPM

    • 📲 Get push notifications from your JavaScript or TypeScript app
    • ⚙️ Supports Node.js, Deno, Bun, Cloudflare Workers... anything with the standard Fetch API
    • 🔋 Fully supports the entire Pushover API, including Receipts, Glances, Groups, and Teams
    • 🛠️ Every method has TypeScript types for the arguments each endpoint takes and what it returns
    • 🤝 Works with ESM and CommonJS codebases
    • ⚡️ Tiny: no dependencies
    import { Pushover } from 'pushover-sdk';

    const pushover = new Pushover({
    token: 'egn0tactva1lyarea1t0k3n',
    user: 's0mepush0v3rus3rid',
    });

    await pushover.sendMessage('This is a push notification!');
    npm install pushover-sdk
    # or...
    yarn add pushover-sdk
    # or...
    pnpm install pushover-sdk
    # or...
    bun add pushover-sdk