Containerized development with NestJS and Docker

Creating a brand-new Nest.js application is a breeze due to its awesome CLI. With a single command, nest new app-name, we have a fully functional, ready-to-get-our-hands-dirty application.
Creating a brand-new Nest.js application is a breeze due to its awesome CLI. With a single command, nest new app-name, we have a fully functional, ready-to-get-our-hands-dirty application.
Every website that deals with video streaming in any way has a way of showing a short preview of a video without actually playing it. YouTube, for instance, plays a 3-4 seconds long excerpt from the video whenever the user...
JSONP has always been one of the most poorly explained concepts in all of web development. This is likely due to its confusing name and overall sketchy background. Prior to the adoption of CORS, JSONP was the only option to...
Proxy is one of the most overlooked concepts introduced in the ES6 version of JavaScript.
Nest is a back-end framework for creating scalable applications. It works as an abstraction over the underlying HTTP server library. Currently, it supports two libraries — Express and Fastify — while still enabling developers to use their own APIs when...