Skip to content

Commit fc7c562

Browse files
authored
chore(docs): Update Express sign-in and sign-out examples with TypeScript (#12467)
* docs: add Express sign-in and sign-out route examples to session management * chore(docs): update Express sign-in and sign-out examples to use TypeScript and improve error handling * chore(docs): update sign-out example in session management to redirect to home * chore(docs): update sign-out example in session management to use correct import for signOut
1 parent 7772375 commit fc7c562

File tree

1 file changed

+38
-20
lines changed
  • docs/pages/getting-started/session-management

1 file changed

+38
-20
lines changed

docs/pages/getting-started/session-management/login.mdx

+38-20
Original file line numberDiff line numberDiff line change
@@ -133,12 +133,12 @@ The Express package runs server-side and therefore it doesn't make sense to crea
133133

134134
To sign in users with Express, you can create a route that handles the sign-in logic. Here is an example:
135135

136-
```js filename="src/routes/auth.js"
137-
const express = require("express")
136+
```ts filename="src/routes/auth.ts"
137+
import express, { Request, Response } from "express"
138+
import { signIn } from "../auth"
138139
const router = express.Router()
139-
const { signIn } = require("../auth")
140140

141-
router.post("/auth/signin", async (req, res) => {
141+
router.post("/auth/signin", async (req: Request, res: Response) => {
142142
try {
143143
await signIn(req, res)
144144
res.redirect("/dashboard")
@@ -147,17 +147,17 @@ router.post("/auth/signin", async (req, res) => {
147147
}
148148
})
149149

150-
module.exports = router
150+
export { router }
151151
```
152152

153153
To sign out users with Express, you can create a route that handles the sign-out logic. Here is an example:
154154

155-
```js filename="src/routes/auth.js"
156-
const express = require("express")
155+
```ts filename="src/routes/auth.ts"
156+
import express, { Request, Response } from "express"
157+
import { signOut } from "../auth"
157158
const router = express.Router()
158-
const { signOut } = require("../auth")
159159

160-
router.post("/auth/signout", async (req, res) => {
160+
router.post("/auth/signout", async (req: Request, res: Response) => {
161161
try {
162162
await signOut(req, res)
163163
res.redirect("/")
@@ -166,7 +166,7 @@ router.post("/auth/signout", async (req, res) => {
166166
}
167167
})
168168

169-
module.exports = router
169+
export { router }
170170
```
171171

172172
</Code.Express>
@@ -266,6 +266,24 @@ export default component$(() => {
266266
```
267267

268268
</Code.Svelte>
269+
<Code.Express>
270+
```ts filename="src/routes/auth.ts"
271+
import express, { Request, Response } from "express";
272+
import { signOut } from "../auth";
273+
const router = express.Router()
274+
275+
router.post("/auth/signout", async (req: Request, res: Response) => {
276+
try {
277+
await signOut(req, res)
278+
res.redirect("/")
279+
} catch (error) {
280+
res.status(500).send("Sign out failed")
281+
}
282+
})
283+
284+
export { router }
285+
```
286+
</Code.Express>
269287
</Code>
270288

271289
### Signout
@@ -392,12 +410,12 @@ The Express package runs server-side and therefore it doesn't make sense to crea
392410

393411
To sign in users with Express, you can create a route that handles the sign-in logic. Here is an example:
394412

395-
```js filename="src/routes/auth.js"
396-
const express = require("express")
413+
```ts filename="src/routes/auth.ts"
414+
import express, { Request, Response } from "express"
415+
import { signIn } from "../auth"
397416
const router = express.Router()
398-
const { signIn } = require("../auth")
399417

400-
router.post("/auth/signin", async (req, res) => {
418+
router.post("/auth/signin", async (req: Request, res: Response) => {
401419
try {
402420
await signIn(req, res)
403421
res.redirect("/dashboard")
@@ -406,17 +424,17 @@ router.post("/auth/signin", async (req, res) => {
406424
}
407425
})
408426

409-
module.exports = router
427+
export { router }
410428
```
411429

412430
To sign out users with Express, you can create a route that handles the sign-out logic. Here is an example:
413431

414-
```js filename="src/routes/auth.js"
415-
const express = require("express")
432+
```ts filename="src/routes/auth.ts"
433+
import express, { Request, Response } from "express"
434+
import { signOut } from "../auth"
416435
const router = express.Router()
417-
const { signOut } = require("../auth")
418436

419-
router.post("/auth/signout", async (req, res) => {
437+
router.post("/auth/signout", async (req: Request, res: Response) => {
420438
try {
421439
await signOut(req, res)
422440
res.redirect("/")
@@ -425,7 +443,7 @@ router.post("/auth/signout", async (req, res) => {
425443
}
426444
})
427445

428-
module.exports = router
446+
export { router }
429447
```
430448

431449
</Code.Express>

0 commit comments

Comments
 (0)