Merge branch 'master' of github.com:poolifier/poolifier
[poolifier.git] / examples / typescript / http-server-pool / fastify / src / main.ts
CommitLineData
a8706532
JB
1import { dirname, extname, join } from 'node:path'
2import { fileURLToPath } from 'node:url'
3import Fastify from 'fastify'
a8706532
JB
4import { fastifyPoolifier } from './fastify-poolifier.js'
5
75cfb36d
JB
6/**
7 * The fastify server is still a single-threaded application, but the request handling can be multi-threaded.
8 */
9
a8706532
JB
10const port = 8080
11const fastify = Fastify({
12 logger: true
13})
14
15const workerFile = join(
16 dirname(fileURLToPath(import.meta.url)),
17 `worker${extname(fileURLToPath(import.meta.url))}`
18)
19
20await fastify.register(fastifyPoolifier, {
21 workerFile,
a8706532
JB
22 enableTasksQueue: true,
23 tasksQueueOptions: {
24 concurrency: 8
25 },
26 errorHandler: (e: Error) => {
27 console.error(e)
28 }
29})
30
31fastify.all('/api/echo', async (request, reply) => {
32 await reply.send((await fastify.execute({ body: request.body }, 'echo')).body)
33})
34
16100564
JB
35fastify.get<{
36 Params: { number: number }
37}>('/api/factorial/:number', async (request, reply) => {
38 const { number } = request.params
39 await reply.send(
40 (await fastify.execute({ body: { number } }, 'factorial')).body
41 )
42})
a8706532
JB
43
44try {
45 await fastify.listen({ port })
46} catch (err) {
47 fastify.log.error(err)
48 process.exit(1)
49}