Nest is a kitchen-sink type framework. It has a lot of tools that you don't always need and a lot of opinions about how things should be done. If your project requirements deviate at all from what is documented in basic use cases you can actually be worse off then using a lightweight framework like express and bringing in the pieces you need. Answer from WarInternal on reddit.com
🌐
Medium
medium.com β€Ί @sphinxshivraj β€Ί nestjs-vs-express-the-ultimate-comparison-of-node-frameworks-948b9cc9d3a1
NestJS vs. Express: The Ultimate Comparison of Node Frameworks | by sphinx | Medium
November 29, 2023 - NestJS consists of a Dependency Injection container that keeps your code organized, clean, and ready to use. You can integrate with multiple technologies like TypeORM, Mongoose, and GraphQL & concepts like Validation, Logging, Caching, Web Sockets, ...
Discussions

Why nodejs engineers prefer express over nestjs? although nestjs forces good practice and proper architecture and it seems to be a right choice for complex and enterprise applications like asp.net and Spring. What are the limitations of nestjs compared to express? : node
The node community on Reddit. Reddit gives you the best of the internet in one place. More on old.reddit.com
🌐 r/node
Fastify, Koa, Express, or Nestjs? CRUD app with 100 endpoints

You could use any of them. NestJs is really just an architectural framework that, like previously mentioned, uses either express or fastify. Koa was built by those to correct some default issues with express, but there were community plugins that already fixed them. Fastify is just a super lightweight framework. Any of them can easily handle any number of potential endpoints. The problem will come from how/when the CRUD operations occur.

More on reddit.com
🌐 r/node
8
1
July 22, 2021
Node Express / NestJS running on AWS Lambda - Are we doing it right?

I’m not sure about optimizations Amazon does for lambda functions. It might spawn them and kill them whenever. So persisting and speed is a thing if you want to host a whole server in a function. There is an extra app from aws to host node. I guess there is a reason to use that instead

More on reddit.com
🌐 r/node
9
3
July 24, 2020
Express or NestJS for the backend?
Neither. Fastify. It's a modern express.js alternative staying true to node.js philosophy. NestJS is nice, but it has bigger overhead than Fastify/Express for simple use cases. More on reddit.com
🌐 r/node
38
26
April 9, 2021
🌐
LogRocket
blog.logrocket.com β€Ί home β€Ί nestjs vs. express.js
NestJS vs. Express.js - LogRocket Blog
June 4, 2024 - This framework is inspired by Angular, ... can be easily learned by Angular developers for any type of project. Nest uses the Express HTTP framework by default....
🌐
GeeksforGeeks
geeksforgeeks.org β€Ί gblog β€Ί expressjs-vs-nestjs-5-differences-that-you-should-know
ExpressJS vs NestJS - 7 Differences That You Should Know - GeeksforGeeks
ExpressJS: ExpressJS is unopinionated, providing developers with the freedom to implement code according to their specific needs. It lacks a set of pre-defined rules, allowing for multiple possibilities in coding approaches.
Published Β  July 23, 2025
🌐
Swovo
swovo.com β€Ί blog β€Ί nestjs-vs-express
NestJS vs. Express.js: Choosing the Best Node Framework for 2026
Nestjs is designed to provide a structured and modular approach, making it easier to build and maintain large-scale applications, whereas Expressjs offers more flexibility but may require additional setup for scalability.
Find elsewhere
🌐
Jelvix
jelvix.com β€Ί home β€Ί blog
Comparing NestJS & Express.js: Which Framework is the Best
October 31, 2024 - For instance, the NestJS framework provides features that promote loose coupling, dependency injection, and better code maintainability. This framework has a developed ecosystem, including extensive documentation and active community support, fostering productive software development. Express.js is a well-known lightweight JavaScript-based Node.js framework extensively used for building mobile and web applications.
🌐
DEV Community
dev.to β€Ί bilelsalemdev β€Ί nestjs-vs-expressjs-when-to-use-each-2l73
NestJS vs Express.js: When To Use Each - DEV Community
May 30, 2025 - Final Recommendation: Use Express for microservices and serverless, NestJS for monoliths and enterprise apps.
🌐
Medium
bhargavacharyb.medium.com β€Ί unlocking-web-development-potential-choosing-between-nestjs-and-express-js-250180d2abfa
Unlocking Web Development Potential: Choosing Between NestJS and Express.js | by Bhargava Chary | Medium
October 20, 2024 - NestJS: Follows modular architecture where functionality is divided into controllers, services, and modules. This makes it easier to organize large applications and promotes maintainability.
🌐
Radixweb
radixweb.com β€Ί blog β€Ί nestjs-vs-expressjs
NestJS vs ExpressJS: Which Framework is Best?
August 26, 2024 - Compare NestJS and ExpressJS to discover which Node.js framework offers the best features and benefits for building efficient and scalable web applications.
🌐
GitConnected
levelup.gitconnected.com β€Ί express-vs-nestjs-which-framework-actually-delivers-better-performance-2025-e9916ac58251
Express vs NestJS: Which Framework Actually Delivers Better Performance? [2025] | by π•„π•’π•™π•žπ• π•¦π•• π•Šπ•’π•–π•–π•• | Level Up Coding
June 25, 2025 - Β· Express and NestJS both power Node.js applications, but they take different approaches to performance and architecture. Express holds… Β· Table of content Β· Core Architecture and Design Philosophy Β· NestJS: Modular and opinionated structure ...
🌐
Bluebird International
bluebirdinternational.com β€Ί home β€Ί blog β€Ί nestjs vs express – complete guide
NestJS vs Express - Complete Guide
October 24, 2024 - Firstly, NestJS is an opinionated framework, meaning it follows specific design paradigms and conventions. On the other hand, Express.js is unopinionated, allowing for more flexibility and experimentation in application development.
🌐
Siddhatech
siddhatech.com β€Ί home β€Ί blogs β€Ί technical β€Ί nest js vs. express js: which framework is best?
Nest JS vs. Express JS: Which Framework Is Best?
September 30, 2024 - The NestJS framework is more structured and has TypeScript support, which is designed for complex applications. Express.js is minimal and flexible, suitable for simpler projects or when more control over application structure is needed.
🌐
NestJS
nestjs.com
NestJS - A progressive Node.js framework
NestJS is a framework for building efficient, scalable Node.js web applications. It uses modern JavaScript, is built with TypeScript and combines elements of OOP (Object Oriented Programming), FP (Functional Programming), and FRP (Functional Reactive Programming).
🌐
Lumigo
lumigo.io β€Ί home β€Ί comparing nestjs and expressjs
Comparing NestJS and ExpressJS - Lumigo
June 25, 2024 - The catch block captures the error and throws a new error, which, depending on the global error handling setup in NestJS, will be sent back to the client as an error response. This simulates and provides a context for handling asynchronous errors and exceptions in a real-world application. Before we proceed, ensure that the ExpressJS application is set to run on port 3001 and the NestJS application on port 3000.
🌐
HackerOne
pullrequest.com β€Ί blog β€Ί nestjs-vs-express-a-comparative-analysis-for-secure-and-efficient-web-development
NestJS vs Express: A Comparative Analysis for Secure and Efficient Web Development | PullRequest Blog
Express does not enforce any specific architecture, making it very flexible but also putting the onus of structure and security entirely on the developer. This flexibility can be a double-edged sword, especially in large-scale applications where consistency and best practices in code structure are crucial. NestJS, on the other hand, is a framework for building efficient, reliable, and scalable server-side applications.
🌐
Aalpha
aalpha.net β€Ί our company β€Ί blog
NestJS vs. ExpressJS 2025 : Which Is Better Framework? : Aalpha
December 27, 2024 - While all the two frameworks boast ... that Express.js takes the top spot in terms of usage. Contrarily, Nest is new in the development sphere and boasts robustness. Let’s dive into a deep understanding of the two frameworks and get a distinctive approach to help you choose a better option. While NextJS and ExpresJS relate differently, it is essential to understand that NestJS is built on ...
Price Β  $
Call Β  +91-9845619104
Address Β  Diamond Corner Arcade, 2nd, Deshpande Nagar, Hubli, Karnataka 580021
🌐
BairesDev
bairesdev.com β€Ί home β€Ί blog β€Ί software development
NestJS vs. Express.js: What’s the Best Framework for Server-Side Application Development?
Light frameworks like Express.js ... equally capable, and as for scalability, while NestJS is a bit easier to scale, Express can offer the same if not more with a bit of work....
🌐
Krishang Technolab
krishangtechnolab.com β€Ί home β€Ί blog β€Ί nestjs vs expressjs: how to choose the best framework?
NestJS vs ExpressJS: How to Choose the Best Framework? [2025]
August 26, 2025 - Quick Overview: This blog discusses the differences between NestJS and ExpressJS, two of the most popular Node.js frameworks in 2025. ExpressJS is known for being easy to use, fast, and flexible. NestJS, on the other hand, is better for enterprise ...
Price Β  $25 - $30
Address Β  E-506, Ganesh Glory 11, Near BSNL Office, Off Sarkhej - Gandhinagar Highway, Jagatpur, 382470, Ahmedabad
(5.0)
🌐
Nomadic Soft
nomadicsoft.io β€Ί главная страница β€Ί express.js vs nest.js: choosing the right node.js framework for your next web development project
Express.js vs Nest.js: Choosing the Right Node.js Framework for Your Next Web Development Project | Nomadic Soft
August 11, 2024 - But, it may add some overhead for performance. Express is great at handling simple routing. It does this quickly due to its minimal design. But, Nestjs, which uses Express, provides a more organized architecture.