Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@nx-extend/react-email

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nx-extend/react-email

Source
npmnpm
Version
7.0.2
Version published
Maintainers
1
Created
Source

@nx-extend/react-email

@nx-extend/react-email NPM package

Nx plugin for building emails with React Email.

Features

  • Build and preview emails using React components
  • Live development server for email templates
  • Export emails to static HTML
  • Full TypeScript support
  • Integration with Nx workspace

Setup

Install

npm install -D @nx-extend/react-email
nx g @nx-extend/react-email:init

Usage

Serve

Start the React Email development server to preview your email templates:

nx serve <project-name>

Available options:

NameTypeDefaultDescription
portstring-Port to run the development server on

Export

Export your email templates to static HTML files:

nx export <project-name>

Available options:

NameTypeDefaultDescription
outputPathstring-Output path to output the build to

Examples

Start Development Server

nx serve my-emails --port=3000

Export Email Templates

nx export my-emails --outputPath=dist/emails

Project Structure

After initialization, your project will typically have the following structure:

my-emails/
├── src/
│   └── emails/
│       └── welcome.tsx
└── project.json

Create email components in the src/emails directory using React Email components.

Keywords

nx

FAQs

Package last updated on 21 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts