Real-time Notifications Made Simple

Real-time Notifications Made Simple

Mike Chen
15 months ago
6 min read
notificationsreal-timeengagement

Real-time Notifications Made Simple

Real-time notifications are crucial for user engagement. Onebase makes it easy to implement push notifications across all platforms.

Setting Up Notifications

javascript
import { OnebaseNotifications } from '@onebase/notifications';

const notifications = new OnebaseNotifications({
  apiKey: 'your-api-key'
});

// Send a notification
await notifications.send({
  title: 'Welcome!',
  body: 'Thanks for joining Onebase',
  userId: 'user-123'
});

Related Articles