Skip to content

Commit bbe251a

Browse files
authoredJun 10, 2024··
Update example to latest deps. (#30)
1 parent 18b9022 commit bbe251a

File tree

8 files changed

+763
-692
lines changed

8 files changed

+763
-692
lines changed
 

‎.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.env
22
.next
33
.vercel
4-
node_modules
4+
node_modules
5+
next-env.d.ts

‎LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 Plus Five Five, Inc.
3+
Copyright (c) 2024 Plus Five Five, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

‎README.md

+13-15
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
1-
# Resend with Vercel Edge Functions
1+
# Resend with Vercel Functions
22

3-
This example shows how to use Resend with [Vercel Edge Functions](https://vercel.com).
3+
This example shows how to use Resend with [Vercel Functions](https://vercel.com/docs/functions).
44

55
## Prerequisites
66

77
To get the most out of this guide, you’ll need to:
88

9-
* [Create an API key](https://resend.com/api-keys)
10-
* [Verify your domain](https://resend.com/domains)
9+
- [Create an API key](https://resend.com/api-keys)
10+
- [Verify your domain](https://resend.com/domains)
1111

1212
## Instructions
1313

1414
1. Install dependencies:
1515

16-
```sh
17-
npm install
18-
# or
19-
yarn
20-
```
16+
```sh
17+
pnpm install
18+
```
2119

2220
2. Run Next.js locally:
2321

24-
```sh
25-
npm run dev
26-
```
22+
```sh
23+
pnpm run dev
24+
```
2725

2826
3. Open URL in the browser:
2927

30-
```
28+
```
3129
http://localhost:3000/api/send
32-
```
30+
```
3331

3432
## License
3533

36-
MIT License
34+
MIT License

‎app/api/send/route.ts

+9-14
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,22 @@
1-
import { NextResponse } from "next/server";
2-
3-
export const runtime = "edge";
4-
export const dynamic = "force-dynamic";
5-
6-
const RESEND_API_KEY = "re_123456789";
1+
const RESEND_API_KEY = 're_123456789';
72

83
export async function POST() {
9-
const res = await fetch("https://api.resend.com/emails", {
10-
method: "POST",
4+
const res = await fetch('https://api.resend.com/emails', {
5+
method: 'POST',
116
headers: {
12-
"Content-Type": "application/json",
7+
'Content-Type': 'application/json',
138
Authorization: `Bearer ${RESEND_API_KEY}`,
149
},
1510
body: JSON.stringify({
16-
from: "Acme <onboarding@resend.dev>",
17-
to: ["delivered@resend.dev"],
18-
subject: "hello world",
19-
html: "<strong>it works!</strong>",
11+
from: 'Acme <onboarding@resend.dev>',
12+
to: ['delivered@resend.dev'],
13+
subject: 'hello world',
14+
html: '<strong>it works!</strong>',
2015
}),
2116
});
2217

2318
if (res.ok) {
2419
const data = await res.json();
25-
return NextResponse.json(data);
20+
return Response.json(data);
2621
}
2722
}

‎next-env.d.ts

-5
This file was deleted.

‎package.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
{
2-
"name": "with-vercel-edge-functions",
32
"private": true,
43
"scripts": {
5-
"dev": "next dev"
4+
"dev": "next dev --turbo",
5+
"build": "next build",
6+
"start": "next start"
67
},
78
"dependencies": {
8-
"next": "^14.0.0",
9-
"react": "^18.2.0",
10-
"react-dom": "^18.2.0",
11-
"resend": "^3.0.0"
9+
"next": "^14.2.3",
10+
"react": "^18.3.1",
11+
"react-dom": "^18.3.1",
12+
"resend": "^3.2.0"
1213
},
1314
"devDependencies": {
14-
"@types/node": "20.5.0",
15-
"@types/react": "18.2.20",
16-
"typescript": "5.3.3"
15+
"@types/node": "20.14.2",
16+
"@types/react": "18.3.3",
17+
"typescript": "5.4.5"
1718
}
1819
}

‎pnpm-lock.yaml

+727
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎yarn.lock

-646
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.