0

I have an on-going http service application using Express. Recently I read Fastify and like it. I wonder if it is possible for new features I can use Fastify within the same Nodejs projects?

Thanks, Chen

Chen Wang
  • 21
  • 5
  • It looks to me like Fastify is its own web framework so you either use express or fastify, not both for the same server. – jfriend00 Dec 25 '19 at 07:25

1 Answers1

0

You can use both of them on different ports only and work together via microservices architecture (e.g. TCP connection) or global storage (e.g. Redis)

enter image description here

zemil
  • 3,235
  • 2
  • 24
  • 33