Typescript/Javascript library for interacting with the Svix API and verifying webhook signatures
You can find general usage documentation at https://docs.svix.com. For complete API documentation with code examples for each endpoint in all of our official client libraries head over to our API documentation site at https://api.svix.com.
| ⚡️ Features ⚡️ | |
|---|---|
| Officially Supported | ✅ |
| API Support | ✅ |
| Signature Verification | ✅ |
| Caveats | None! 🚀 |
npm install svix
# or
yarn add sviximport { Svix } from "svix";
const svix = new Svix("AUTH_TOKEN");
const app = await svix.application.create({ name: "Application name" });First checkout the core README for details on how to generate our API bindings, then follow the steps below.
- node
- yarn
yarn
yarn buildBefore opening a PR be sure to format your code!
yarn lint:fixSimply run:
yarn test