Skip to main content
In this guide, we will add a Novu Bridge Endpoint to a H3 application and send our first test workflow.
1

Set up your local environment

Start the Local Studio by running:
npx novu dev
The Local Studio will be available at http://localhost:2022. This is where you can preview and test your workflows.
2

Install packages

Install the Novu Framework package:
npm install @novu/framework
This package provides all the necessary tools to build and manage your notification workflows.
3

Add a Novu API Endpoint

app/server/api/novu.ts

const app = createApp();

app.use("/api/novu", eventHandler(serve({ workflows: [testWorkflow] }) ));

createServer(toNodeListener(app)).listen(4000);
4

Configure your secret key

Add your Novu secret key to your environment variables:
.env
NOVU_SECRET_KEY=your_secret_key
5

Create your workflow definition

Add a novu folder in your app folder as such novu/workflows.ts that will contain your workflow definitions.
app/novu/workflows.ts
import { workflow } from '@novu/framework';

export const testWorkflow = workflow('test-workflow', async ({ step }) => {
  await step.email('test-email', async () => {
    return {
      subject: 'Test Email',
      body: 'This is a test email from Novu Framework!',
    };
  });
});
6

Start your application

Start your H3 server with the Novu Endpoint configured.If your H3 application is running on a port other than 4000, restart npx novu dev with that port:
npx novu@latest dev --port <YOUR_H3_APPLICATION_PORT>
7

Test your endpoint

Test your workflow by triggering it from the Local Studio or using the Novu API:
curl -X POST https://api.novu.co/v1/events/trigger \
  -H 'Authorization: ApiKey YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "my-workflow",
    "to": "subscriber-id",
    "payload": {}
  }'
You should see the notification being processed in your Local Studio.
8

Deploy your application

Deploy your application to your preferred hosting provider. Make sure the /api/novu endpoint is accessible from the internet.For local development and testing, you can use tools like ngrok to expose your local server to the internet.
Now that you have your first workflow running, you can: