
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
jsx-email-builder
Advanced tools
JSX Email Builder is a tool for building HTML emails using JSX. It does this by compiling JSX to HTML and then inlining the CSS. No more writing HTML emails by hand!
Your templates will look like this:
// imports come here
function Root() {
return (
<EmailTemplate>
<Header>My Company</Header>
<Body>
<SubHeader>Welcome to My Company!</SubHeader>
<Main>
<Paragraph>
We're so excited to have you on board. We hope you enjoy your time
here.
</Paragraph>
<Button href="https://mycompany.com">Visit My Company</Button>
</Main>
</Body>
</EmailTemplate>
);
}
Jsx email builder uses i18next for translations so all the power of i18next is at your disposal.
Node.js 16 or higher
make sure you have the latest version of Node.js installed. You can check your version by running node -v in your terminal.
NPM 8 or higher
make sure you have the latest version of NPM installed. You can check your version by running npm -v in your terminal.
If you don't have a project yet, you can create one by running the following command:
npx jsx-email-builder@latest init my-project
Or optionally, you can specify the project directory and the templates directory:
npx jsx-email-builder@latest init my-project --projectDir ../projects --templatesDir templates
aliases: new, create
This will create a new project in the my-project directory. It will also create a templates directory with some example templates. Feel free to delete or modify these templates.
Now it's time to install the dependencies:
npm install
or
yarn install
npm run start
Or using yarn:
yarn start
This will start a development server that will watch your templates and recompile them when they change. By default, it will run on port 3000, but you can change this by passing the --port flag. To view your templates, go to http://localhost:3000/ in your browser.
npm run build
Or using yarn:
yarn build
This will compile all of your JSX email templates into HTML files.
FAQs
A jsx email template builder. Supper easy and fast.
The npm package jsx-email-builder receives a total of 0 weekly downloads. As such, jsx-email-builder popularity was classified as not popular.
We found that jsx-email-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.