perf: switch benchmarks to factorial(50000)
[poolifier.git] / examples / typescript / http-server-pool / express-cluster / src / worker.ts
CommitLineData
a449b585
JB
1import type { Server } from 'node:http'
2import type { AddressInfo } from 'node:net'
ded253e2 3
15a9c195 4import express, { type Express, type Request, type Response } from 'express'
ded253e2
JB
5import { ClusterWorker } from 'poolifier'
6
ef083f7b 7import type { WorkerData, WorkerResponse } from './types.js'
15a9c195 8
15a9c195
JB
9class ExpressWorker extends ClusterWorker<WorkerData, WorkerResponse> {
10 private static server: Server
11
66f0c14c
JB
12 private static readonly factorial = (n: number | bigint): bigint => {
13 if (n === 0 || n === 1) {
14 return 1n
15 } else {
16 n = BigInt(n)
17 let factorial = 1n
18 for (let i = 1n; i <= n; i++) {
19 factorial *= i
20 }
21 return factorial
8538ea4c 22 }
8538ea4c
JB
23 }
24
15a9c195
JB
25 private static readonly startExpress = (
26 workerData?: WorkerData
27 ): WorkerResponse => {
67f3f2d6 28 const { port } = workerData!
d0ed34c9 29
15a9c195
JB
30 const application: Express = express()
31
32 // Parse only JSON requests body
33 application.use(express.json())
34
35 application.all('/api/echo', (req: Request, res: Response) => {
36 res.send(req.body).end()
37 })
38
39 application.get('/api/factorial/:number', (req: Request, res: Response) => {
40 const { number } = req.params
66f0c14c
JB
41 res
42 .send({ number: ExpressWorker.factorial(parseInt(number)).toString() })
43 .end()
15a9c195
JB
44 })
45
d0ed34c9 46 ExpressWorker.server = application.listen(port, () => {
15a9c195 47 console.info(
d0ed34c9 48 `⚡️[express server]: Express server is started in cluster worker at http://localhost:${port}/`
15a9c195
JB
49 )
50 })
51 return {
52 status: true,
c63a35a0 53 port: (ExpressWorker.server.address() as AddressInfo).port
15a9c195
JB
54 }
55 }
56
57 public constructor () {
58 super(ExpressWorker.startExpress, {
59 killHandler: () => {
60 ExpressWorker.server.close()
61 }
62 })
63 }
64}
65
66export const expressWorker = new ExpressWorker()