shopify-push-notifications
v1.1.3
Published
The simplest way to add push notifications to your Shopify store
Downloads
3
Readme
Shopify Push Notifications
Web + Native iOS + Android Support
Push Notifications to Shopify and your native app, through our Passwordless Login App using this example React Native codebase, no native modules to link & Expo friendly!
Quick Start
$ yarn add shopify-push-notifications
Step 1 // Save Token
const { token, message } = push('YOUR-STORE.myshopify.com, 'YOUR-SECRET')
let res = await token('exponentpushtoken[xxxxxxxxxxxxxxxxxxxxxx]')
if (!res.success) console.warn(res.error)
// web or expo token saved
Step 2 // Push Message
res = await message('TITLE', 'Message body...', {withJSON: 'Optional data'})
if (!res.success) console.warn(res.error)
// message broadcasted!