Installation
Get started with NotifyKit in minutes.
Sign Up
- Visit notifykit.dev
- Create an account
- Get your API key from the dashboard
Install SDK
npm
npm install @notifykit/sdk
yarn
yarn add @notifykit/sdk
pnpm
pnpm add @notifykit/sdk
Requirements
- Node.js 18 or higher
- TypeScript 5.0+ (optional but recommended)
Verify Installation
Create a test file:
import { NotifyKitClient } from "@notifykit/sdk";
const client = new NotifyKitClient({
apiKey: "your-api-key",
});
const pong = await client.ping();
console.log(pong); //'pong'