search
HomeWeb Front-endJS TutorialDetailed explanation of Nodejs module loading and operation principle

When using Nodejs, it is inevitable to refer to third-party modules. Some of them are built-in with Nodejs (for example: http, net...), and some are published on npm (for example: mssql, elasticsearch...)

This chapter focuses on 3 issues:

  1. The loading process of Nodejs module.

  2. The process of application startup.

  3. How the application loads dependent modules.

1. Module loading process

Nodejs modules can be roughly divided into 4 types:

a) builtin module Nodejs module provided in C++.

b) constant module A module that defines constants in Nodejs.

c) native module Module provided in javascript form in Nodejs.

d) Third-party module Modules provided by third parties.

Let’s first look at the generation process of builtin module and native module.

The generation of native JS module is relatively complicated. After compilation, a node_natives.h will be generated in the /out/release/obj/gen directory.

This file is generated by js2c.py. It will convert all js files in the lib directory in the Nodejs source code into ASCII codes and store them in the corresponding array.

builtin C++ module generation process is relatively simple. Each builtin C++ module entry will be expanded into a func through the macro NODE_MODULE_CONTEXT_AWARE_BUILTIN. For example, for the tcp_wrap module, it will be expanded into static void register_tcp_wrap() attribute(constructor) function.

Friends who are familiar with GCC know that the function modified by attribute (constructor) will be executed before the main() function of Nodejs. In other words, the builtin C++ module will be loaded before the main() function. modlist_builtin list, and modlist_builtin is a pointer of type struct node_module, get_builtin_module() will traverse to find the module we need.

In fact, whether it is a naive JS module or a builtin C++ module, it will eventually be compiled into an executable file. The extraction methods of the two are quite different. The js module uses process.binding('natives'), while the C++ module uses get_builtin_module() directly.

A binding() function is provided in node.cc. When we use require() to reference another module, the binding() function will be introduced. Let's analyze this function:

It can be seen visually that the function mainly serves three modules: builtin, constants and native.

builtin has the highest priority and will be searched in modlist_builtin. The process is very simple. Just traverse the entire list and search for modules with the same name. After being found, the module's registration function will be executed first, and then the data exports will be returned.

The constants module has the second priority, and the constant definitions in Nodejs are exported through constants.

native has the lowest priority.

2. Application startup process

The above picture is a flow chart, which describes the startup of test.js as a parameter Begin and eventually be executed. The whole process can be divided into 4 steps:

1. Executable file node: node entry, which mainly plays the role of environment preparation during the startup process

2.src/node.js: startup script

3.Native Module: Prepare for the execution of module.js

4.module.js: native module, used to load, compile, and execute applications

How the application loads dependent modules

As mentioned earlier, NativeModule.require() is only responsible for helping to reference natives modules, which is enough for lib/module.js.

But it is obvious that general applications need to reference not only the matatives module, but also third-party modules. Let us take a look at the Module.prototype._require() function in module.js.

Related recommendations:

Basic use of nodejs module nodemailer - Email sending sample code that supports attachments (picture)

In-depth understanding of NodeJS

nodeJS implements WeChat function sharing

The above is the detailed content of Detailed explanation of Nodejs module loading and operation principle. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

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 Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment