DEV Community

Discussion on: Frameworks War

Collapse
 
dylanwatsonsoftware profile image
Dylan Watson

I've used both NestJS and NextJS in prod and have loved them both! I'd be curious to hear more about your usages of both of them though

Collapse
 
farminf profile image
Farmin Farzin

We love them too. So on the FE part we actually built 2 apps with Next and our user consumption scales 2x monthly.
On the backend, apart from our apps we expose our API to some 3rd party services and the usage is super high. Don’t have a precise data but only on one of our endpoints we have 5k calls per day.
Plus we’re using Nestjs micro-service for Kafka consumer and Nest commands for our cronjobs.

Collapse
 
dylanwatsonsoftware profile image
Dylan Watson

Yeah nice. My feeling at the moment is that for simple projects you can probably get away with just nextjs hosted on Vercel (with serverless functions). For larger projects, replacing Vercel serverless with NestJS seems pretty perfect.