search
HomeWeb Front-endJS TutorialLet's talk about how the node framework Nest.js integrates Express with loose coupling!

This article will let you talk about how the node framework Nest.js integrates Express in a loosely coupled manner. I hope it will be helpful to everyone!

Let's talk about how the node framework Nest.js integrates Express with loose coupling!

Nodejs provides the http module for listening to ports, processing http requests, and returning responses, which is what it mainly does.

But the api of the http module is too primitive, and it is troublesome to process request responses directly based on it, so we will encapsulate it with a library such as express.

What this layer does is to add a lot of request and response processing methods to request and response to meet the needs of various scenarios, and handle routing, and also provide middleware call chains. To facilitate the reuse of some code, this middleware call chain is called the onion model.

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

#But this layer does not solve the architectural problem: what to do when there are too many modules, and how to manage them? How to divide Model, View and Controller? etc.

So, when using Node.js for back-end services, we will include another layer to solve the architectural problem. The frameworks at this layer include eggjs (ant), midwayjs (Taobao), nestjs (foreign) ).

nestjs is one of the best:

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

##This layer The bottom layer is express, koa, etc. It just solves additional architectural problems based on those http frameworks.

And nestjs does something particularly good. It does not rely on any http platform and can be switched flexibly.

So how does nestjs achieve switching of the underlying platform?

Think about how react renders vdom to canvas, dom, and native?

Define a unified interface, and the render logic of various platforms implements these interfaces. This mode is called adapter mode.

The adapter mode is when a function implemented by a third party is used, it does not rely directly on it, but defines a layer of interfaces to allow the third party to adapt to this layer of interfaces. In this way, any solution that adapts to this layer of interfaces can be integrated, and solutions can be switched flexibly.

Nest.js provides a layer of interface (HttpServer) for the underlying http platform and defines a bunch of methods:

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Because the interface of ts must implement all methods, in order to simplify it, it inherits an abstract class AbstractHttpAdapter and defines the methods that need to be implemented as abstract.

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Then express or other platforms such as fastify can be connected to Nest.js as long as they inherit the adapter class and implement the abstract methods:

For example, ExpressAdapter:

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

or FastifyAdapter:

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

These logics are placed on platform-express and platform-fastify respectively In the package:

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Nest.js The first line of code is to call create:

Lets talk about how the node framework Nest.js integrates Express with loose coupling!

create will select a Type httpAdapter to create the service:

1Lets talk about how the node framework Nest.js integrates Express with loose coupling!

The default is express:

1Lets talk about how the node framework Nest.js integrates Express with loose coupling!

In this way, the request and response methods are called later In the end, it’s all express.

For example, in the controller, you can use the @Request decorator to inject the reqeust object, and you can call various methods of reqeust.

import { Controller, Get, Request } from '@nestjs/common';

@Controller('cats')
export class CatsController {
  @Get()
  findAll(@@Request() request: Request): string {
    return 'This action returns all cats';
  }
}

If you want to call some platform-specific methods outside of the interface, Nest.js also supports it, then use @Req to inject:

import { Controller, Get, Req } from '@nestjs/common';

@Controller('cats')
export class CatsController {
  @Get()
  findAll(@@Req() request: Request): string {
    return 'This action returns all cats';
  }
}

What is injected in this way is a specific platform For example, express's native request object can directly use all its methods.

In addition, if you really want to use the specific api of the Express platform, you can specify the corresponding type parameters when NestFactory.create, so that you can do the corresponding type prompts and checks:

1Lets talk about how the node framework Nest.js integrates Express with loose coupling!

But this will be coupled with a specific platform. Unless you are sure that you will not switch platforms, it is not recommended.

The http platform does this, and similarly, the websocket platform does the same:

defines a unified interface, which can be flexibly connected to socketio and websocket through adapters. Switch:

1Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Illustration of Nest.js processing of http and websocket platforms:

1Lets talk about how the node framework Nest.js integrates Express with loose coupling!

Summary

Node.js provides the http module to monitor ports and process request responses, but its API is too primitive, so we will include a layer to provide more useful request and response APIs in the express layer, but This layer does not solve the architectural problem. To introduce MVC, IOC and other architectures, another layer needs to be included, using higher-level back-end frameworks such as Egg.js, Midway.js, and Nest.js, among which Nest.js is the best. .

Nest.js has made special designs to integrate with the underlying http platform. It uses the adapter mode to provide a layer of interfaces for the underlying platform to adapt, so that different http platforms can be flexibly switched. .

But it also supports the use of platform-specific APIs. For example, @Req can be used to inject the underlying request object in the controller, and the type parameters of the corresponding platform can also be passed in when creating a container.

Nest.js uses Express by default, but it is not entirely correct to say that Express is used, because you can flexibly switch to others. This is the beauty of the adapter pattern.

For more node-related knowledge, please visit: nodejs tutorial!

The above is the detailed content of Let's talk about how the node framework Nest.js integrates Express with loose coupling!. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
node、nvm与npm有什么区别node、nvm与npm有什么区别Jul 04, 2022 pm 04:24 PM

node、nvm与npm的区别:1、nodejs是项目开发时所需要的代码库,nvm是nodejs版本管理工具,npm是nodejs包管理工具;2、nodejs能够使得javascript能够脱离浏览器运行,nvm能够管理nodejs和npm的版本,npm能够管理nodejs的第三方插件。

Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

Vercel是什么?本篇文章带大家了解一下Vercel,并介绍一下在Vercel中部署 Node 服务的方法,希望对大家有所帮助!

node爬取数据实例:聊聊怎么抓取小说章节node爬取数据实例:聊聊怎么抓取小说章节May 02, 2022 am 10:00 AM

node怎么爬取数据?下面本篇文章给大家分享一个node爬虫实例,聊聊利用node抓取小说章节的方法,希望对大家有所帮助!

node导出模块有哪两种方式node导出模块有哪两种方式Apr 22, 2022 pm 02:57 PM

node导出模块的两种方式:1、利用exports,该方法可以通过添加属性的方式导出,并且可以导出多个成员;2、利用“module.exports”,该方法可以直接通过为“module.exports”赋值的方式导出模块,只能导出单个成员。

安装node时会自动安装npm吗安装node时会自动安装npm吗Apr 27, 2022 pm 03:51 PM

安装node时会自动安装npm;npm是nodejs平台默认的包管理工具,新版本的nodejs已经集成了npm,所以npm会随同nodejs一起安装,安装完成后可以利用“npm -v”命令查看是否安装成功。

聊聊V8的内存管理与垃圾回收算法聊聊V8的内存管理与垃圾回收算法Apr 27, 2022 pm 08:44 PM

本篇文章带大家了解一下V8引擎的内存管理与垃圾回收算法,希望对大家有所帮助!

node中是否包含dom和bomnode中是否包含dom和bomJul 06, 2022 am 10:19 AM

node中没有包含dom和bom;bom是指浏览器对象模型,bom是指文档对象模型,而node中采用ecmascript进行编码,并且没有浏览器也没有文档,是JavaScript运行在后端的环境平台,因此node中没有包含dom和bom。

什么是异步资源?浅析Node实现异步资源上下文共享的方法什么是异步资源?浅析Node实现异步资源上下文共享的方法May 31, 2022 pm 12:56 PM

Node.js 如何实现异步资源上下文共享?下面本篇文章给大家介绍一下Node实现异步资源上下文共享的方法,聊聊异步资源上下文共享对我们来说有什么用,希望对大家有所帮助!

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),