2.3.0 • Published 8 months ago

@novu/framework v2.3.0

Weekly downloads
-
License
ISC
Repository
github
Last release
8 months ago

Code-First Notifications Workflow SDK

Version Downloads

Novu Framework allows you to write notification workflows in your codebase. Workflows are functions that execute business logic and use your preferred libraries for email, SMS, and chat generation. You can use Novu Framework with React.Email, MJML, or any other template generator.

Learn more about the Code-First Notifications Workflow SDK in our docs.

Installation

npm install @novu/framework

Quickstart

import { workflow, CronExpression } from '@novu/framework';
import { serve } from '@novu/framework/next';
import { z } from 'zod';

// Define your notification workflow
const weeklyComments = workflow(
  'comment-on-post',
  async ({ payload, step }) => {
    const inAppResponse = await step.inApp('new-comment', async () => ({
      body: `You have a new comment on your post ${payload.comment}`,
    }));

    const weeklyDigest = await step.digest('weekly-digest', () => ({
      cron: CronExpression.EVERY_WEEK,
    }));

    await step.email(
      'weekly-comments',
      async (controls) => ({
        subject: `${controls.prefix} - Weekly post comments (${weeklyDigest.events.length})`,
        body: `Weekly digest: ${weeklyDigest.events.map(({ payload }) => payload.comment).join(', ')}`,
      }),
      {
        // Skip the notification if the weekly digest is empty
        skip: () => weeklyDigest.events.length === 0,
        // Non-technical stakeholders can modify strongly-validated copy in Novu Cloud
        controlSchema: z.object({ prefix: z.string().describe('The prefix of the subject.').default('Hi!') }),
      }
    );
  },
  { payloadSchema: z.object({ comment: z.string().describe('The comment on the post.') }) }
);

// Use your favorite framework to serve your workflows
const { GET, POST, OPTIONS } = serve({ workflows: [weeklyComments] });

// Trigger your notification workflow
weeklyComments.trigger({ to: 'user:123', comment: 'This is a comment on a post' });
2.3.0

8 months ago

2.2.0

9 months ago

2.1.1

9 months ago

2.1.0

9 months ago

2.0.3

9 months ago

2.0.2

10 months ago

2.0.1

10 months ago

2.0.0

10 months ago

2.0.0-canary.6

10 months ago

2.0.0-canary.5

11 months ago

2.0.0-canary.4

11 months ago

2.0.0-canary.3

12 months ago

2.0.0-canary.2

12 months ago

2.0.0-canary.1

12 months ago

2.0.0-canary.0

12 months ago

0.24.3-alpha.18

12 months ago

0.24.3-alpha.17

12 months ago

0.24.3-alpha.16

12 months ago

0.24.3-alpha.15

12 months ago

0.24.3-alpha.14

12 months ago

0.24.3-alpha.13

12 months ago

0.24.3-alpha.12

12 months ago

0.24.3-alpha.11

12 months ago

0.24.3-alpha.10

12 months ago

0.24.3-alpha.9

12 months ago

0.24.3-alpha.8

12 months ago

0.24.3-alpha.7

12 months ago

0.24.3-alpha.6

1 year ago

0.24.3-alpha.5

1 year ago