@flarelane/flarelane-web-sdk
v0.8.0
Published
FlareLane Web SDK
Downloads
131
Readme
FlareLane Web SDK
Web SDK for FlareLane service.
Flarelane lets you build and operate app push and web push with just a few lines of code.
This is free and unlimited sending.
A FlareLane account is required to use the service.
Install
npm install --save @flarelane-web-sdk
Example
// React, Next.js Example
import FlareLane from '@flarelane/flarelane-web-sdk';
...
FlareLane.setLogLevel('verbose');
FlareLane.setConvertedHandler((notification) => {
// do somthing...
});
await FlareLane.initialize({ projectId: 'projectId' });
...