npm.io
1.0.5 • Published 5 years ago

@notifire/node

Licence
MIT
Version
1.0.5
Deps
1
Size
21 kB
Vulns
23
Weekly
0
Stars
3
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.