DeprecatedThis package is deprecated
Notifire Node SDK
And SDK to interact with the Notifire API
Features
- Trigger new notifications from node
- Easy to setup and integrate
- Written in TypeScript with predictable static types.
Install
npm install @notifire/node
yarn add @notifire/node
Usage
import { Notifire } from '@notifire/node';
const notifire = new Notifire(process.env.NOTIFIRE_API_KEY);
await notifire.trigger('<REPLACE_WITH_EVENT_NAME>', {
$user_id: "<USER IDENTIFIER>",
$email: "<USER_EMAIL>",
customAttribute: "", // use the custom attribute from each event here
firstName: ""
});
TypeScript
@notifire/node is written in TypeScript with complete definitions.