cfa3e24123
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Trigger.dev native integration add-on for Astro
This Astro integration project provides a createAstroRoute function that can be used to create an API endpoint route in your Astro project for integration with the hosted Trigger.dev platform.
Usage
- Install the package:
npm install --save @trigger.dev/astro
Note: yes, right now this package isn't published to the npm registry, so you'll need to install it from my GitHub repository if you want to experiment with it. Hopefully this soon graduates into an official npm package from the Trigger.dev team 🙏🏼
- Import the package in a
src/pages/api/trigger.jsfile and define the route endpoint as follows:
import { createAstroRoute } from "triggerdev-astro-integration";
import { client } from "../../../trigger.js";
export const post = createAstroRoute(client);
More information
See the Trigger.dev Astro example project repository for a working example of this integration.
License
MIT
Author
(c) Liran Tal liran@lirantal.com