Best of Express.jsMarch 2023

  1. 1
    Article
    Avatar of faunFaun·3y

    Nodejs Framework | Express vs Nestjs: Which One Will Work Best for Your Project?

    Comparing Express and Nestjs frameworks for Node.js development, highlighting their features, performance, and community support.

  2. 2
    Article
    Avatar of appsignalAppSignal·3y

    How to Build an Error Handling Layer in Node.js

    An error handling layer is a collection of files in a backend software architecture that contain all the logic required to handle errors. All errors that occur in an Express application pass through that layer. By centralizing error handling logic in one place, you can easily integrate custom error behaviors like logging or monitoring.

  3. 3
    Article
    Avatar of denoDeno·3y

    Build a REST API with Express, TypeScript, and Deno

    With Deno, you don’t need to configure TypeScript, so you can get up and running with minimal dependencies. We have to pull in all kinds of code when we’re developing APIs, from geo information, AI, ad servers and whatever other inputs have to come together to produce what’s required.

  4. 4
    Article
    Avatar of logrocketLogRocket·3y

    Using Helmet in Node.js to secure your application

    Helmet.js is a middleware-based technology that improves security in Node.js applications by safeguarding HTTP headers. It protects against common security threats like XSS attacks and click-jacking. Integrating Helmet into a Node.js Express app is simple and only requires a few lines of code.