Best of Express.jsSeptember 2022

  1. 1
    Article
    Avatar of asayerasayer·4y

    Serving Dynamic HTML using Embedded JavaScript (EJS)

    Embedded JavaScript (EJS) is a JavaScript templating engine that lets you generate dynamic HTML and EJS tags. This article will teach you how to use EJS to serve dynamic HTML files in your applications. The EJS syntax is very similar to HTML, which makes it easy to learn. EJS does not support layouts out of the box, but they can be implemented by creating partials for each template. To use partials.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·4y

    How to Deploy Your Node.js Application for Free with Render

    Heroku has been an excellent platform to host your Full Stack applications for years. But that may change, as Heroku is bringing its generous free tier to an end. In this article, we'll learn how to deploy your Node.js application with Express server on Render. It's a free alternative to Heroku with a similar version of the Heroku service.

  3. 3
    Article
    Avatar of towardsdevTowards Dev·4y

    Upgrading your Express server to HTTP/2 with 4 lines of code

    HTTP/2 was released in 2015 as a major revision to the HTTP/1.1 protocol. It was derived from the SPDY protocol as a way to improve the online experience by speeding up page loads and reducing round-trip time. There have been four HTTP iterations since its introduction in 1991.

  4. 4
    Article
    Avatar of devgeniusDev Genius·4y

    Getting started with Sequelize in NodeJS

    Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft, Amazon Redshift, Snowflake’s Data Cloud, DB2, and IBM i.js. It features solid transaction support, relations, eager and lazy loading, read replication, and more.