Webhooks
In order to run workflows in serverless environments like AWS Lambda, Vercel, GCP Cloud Functions, and CloudFlare Workers, you can use webhooks.
Webhooks currently have first-class support only in the Typescript and Go SDKs.
If you are using the following tools, we have quickstart repositories to help you get started:
Creating a Webhook
Navigate to Settings > Webhooks and click "Create Webhook". You can then enter a name and the URL where your webhook will live.
For example, provide the following details:
- Name:
My Webhook App
- URL:
https://example.com/api/webhook
Next, click "Create". You will then be shown the webhook secret which you need to provide as an environment variable to your app.
The secret is only shown once and cannot be retrieved afterwards.
Next, you have to set up your code to handle the webhooks at the specified URL.
Setting up your code
This guide assumes the webhook URL path is /api/webhook
.
You will need to set up two environment variables:
HATCHET_WEBHOOK_SECRET
: The webhook secret you created earlierHATCHET_CLIENT_TOKEN
: The Hatchet API token
Next.js App Dir
import { Hatchet } from "@hatchet-dev/typescript-sdk";
const hatchet = Hatchet.init();
const webhooks = hatchet.webhooks([workflow]);
export const { GET, POST, PUT } = webhooks.nextJSHandler({
secret: process.env.HATCHET_WEBHOOK_SECRET,
});
Next.js Pages Dir
import { Hatchet } from "@hatchet-dev/typescript-sdk";
export const maxDuration = 60; // add this on vercel: 60 for free plans, 300 for pro plans
const hatchet = Hatchet.init();
const webhooks = hatchet.webhooks([workflow]);
export const { GET, POST, PUT } = webhooks.nextJSHandler({
secret: process.env.HATCHET_WEBHOOK_SECRET || "",
});
Express.js App
import express from "express";
import { Hatchet } from "@hatchet-dev/typescript-sdk";
export const maxDuration = 60; // add this on vercel: 60 for free plans, 300 for pro plans
const hatchet = Hatchet.init();
const webhooks = hatchet.webhooks([workflow]);
const app = express();
app.use(
"/api/webhook",
webhooks.expressHandler({ secret: process.env.HATCHET_WEBHOOK_SECRET }),
);
app.listen(8080, () => {
console.log("Server is listening on port 8080");
});
Node.js standard http server
import { createServer } from "http";
import { Hatchet } from "@hatchet-dev/typescript-sdk";
const hatchet = Hatchet.init();
const webhooks = hatchet.webhooks([workflow]);
const server = createServer(
webhooks.httpHandler({ secret: process.env.HATCHET_WEBHOOK_SECRET }),
);
server.listen(8080, () => {
console.log("Server is listening on port 8080");
});