A simple, elegant api to send push notifications to your users, wherever they are. No tables, tokens or queues.
import { Pushable } from '@pushable/node'const pushable = new Pushable(import.meta.env.PUSHABLE_API_KEY) pushable.register('user-123', { token: request.body.token, platform: 'android'}) pushable.send('user-123', { title: 'Welcome!', body: 'Your account is ready 🎉', action: 'https://app.example.com/welcome'})