npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@philnash/resend

v1.1.0

Published

A JavaScript implementation of the Resend API that works in all environments

Downloads

44

Readme

📧 Resend JS 📧

This is a module that uses native JavaScript fetch to make requests to the Resend API and no other modules that require Node.js specific features. The intention is to support platforms that support web platform features like fetch but do not have Node.js APIs like http, like Deno or Cloudflare Workers.

It is written in Deno and will be transpiled to JavaScript. It is intended to work in a similar method to the Resend Node module, though there are expected to be slight differences. Most importantly, resend-node depends on @react-email/render and Resend JS does not.


Quality Gate Status Maintainability Rating Coverage Test status


Usage

To use this library you will need a Resend account and a Resend API key.

Installation

JavaScript

Install with your favourite package manager:

npm install @philnash/resend

yarn add @philnash/resend

pnpm add @philnash/resend

Deno

There's no need to install, just import it from it's URL:

import { Resend } from "https://deno.land/x/resend_js/mod.ts";

Examples

Authenticate the client

You will need an API key for your Resend account. Then, import the module and create a new client.

JavaScript
import { Resend } from "resend-js";

const apiKey = process.env.RESEND_API_KEY;

const resend = new Resend(apiKey);
Deno
import { Resend } from "https://deno.land/x/resend-js/mod.ts";

const apiKey = Deno.env.get("RESEND_API_KEY");

const resend = new Resend(apiKey);

Send an email

You will need the contents of your email in text, HTML, or both.

resend.emails.send({
  from: "[email protected]",
  to: "[email protected]",
  subject: "Hello, World!",
  html: "<h1>Hello, World!</h1><p>This is my first email sent with Resend JS</p>",
});

Note: resend-node supports rendering React emails using React Email, but Resend JS does not.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/philnash/resend-fetch.

Running the project

Fork and clone the project.

The project is written with Deno, so you will need to install the Deno runtime.

Running the tests

You can run the tests with the Deno task:

deno task test

License

This code is available as open source under the terms of the MIT License.