An open-source, app-less push notification service
Poke is a lightweight solution for sending push notifications without requiring users to install a native mobile app. It leverages Progressive Web App (PWA) technology to deliver notifications directly through the web browser.
- 🚀 No app installation required - just install as a PWA
- 📱 Cross-platform support (iOS, Android, Desktop)
- 🔌 Simple REST API for sending notifications
- 🔒 Secure and privacy-focused
- ⚡ Lightweight and fast
-
Visit the poke website
-
Install the PWA:
- Desktop (Chrome): Click the three-dot menu → Cast, save, and share → Install page as app
- Android: Tap the three-dot menu → Add to home screen → Install
- iOS: Tap Share → Add to Home Screen → Add
-
Subscribe to notifications when prompted
-
You're all set! You can now receive notifications
To send notifications to subscribed clients, use the following API endpoint:
curl --request POST \
--url https://api.poke.narasaka.dev/send-notification \
--header 'Content-Type: application/json' \
--data '{
"clientId": "client-id-here",
"notificationPayload": {
"title": "Hello",
"body": "This is a test notification"
}
}'
- Node.js (v18 or higher)
- pnpm
- Clone the repository:
git clone https://github.com/narasaka/poke.git
cd poke
- Install dependencies:
pnpm install
- Start the development server:
pnpm run dev
pnpm run build
Contributions are very welcome! Whether it's:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Improving documentation
This project is open source and available under the MIT License .
If you encounter any issues or have questions, please file an issue on the GitHub repository.