search
HomeWeb Front-endJS TutorialIn-depth understanding of NPM mechanism
In-depth understanding of NPM mechanismMar 29, 2019 am 10:00 AM
csshtmlhtml5javascriptnode.js

This article brings you an in-depth understanding of the NPM mechanism. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

When using NPM to install, package conflicts often occur (such as inconsistent versions of submodules of multiple main modules, etc.), resulting in various major or minor problems encountered during the development process. All the following contents will be introduced here:

  1. Main NPM installation method
  2. NPM package information query
  3. NPM installation mechanism (main)

Installation & query command

NPM various installation methods

  • #npm install packageName[@next | @versionNumber]

      Installed when no module is specified in node_modules (does not check the ~/.npm directory)
  • ##npm install packageName - -f | -- force

    No matter whether a module has been installed or not, npm will
      force it to be reinstalled
  • npm update packageName

    Install if the remote version is newer or the local version does not exist
NPM query service

NPM knows the latest version of each module through the registry query service.
  • You can query the information of the corresponding module through
  • npm view packageName [version]
  • NPM installation mechanism

Enter the npm install command and type After pressing Enter, it will go through the following stages (taking npm 5.5.1 as an example):

1. Execute the preinstall of the project itself

If the current npm project is defined The preinstall hook will be executed at this time.

2. Determine the first-level dependency modules

The first thing you need to do is to determine the first-level dependencies in the project, that is,

dependencies

and ## Modules directly specified in the #devDependencies attribute (assuming no npm install parameters are added at this time). The project itself is the root node of the entire dependency tree

. Each first-level dependency module is a subtree under the root node. npm will start multiple processes from each first-level dependency. The module begins to gradually search for deeper nodes.

If the specified module already exists in the node_modules directory, it will not be reinstalled.

3. Get the module

Getting the module is aThe process of recursion

is divided into the following steps:

Get module information
  • Before downloading a module, you must first determine its version. This is because package.json often contains semantic version (semver, semantic version)

      At this time, if there is information about the module in the version description file (npm-shrinkwrap.json or package-lock.json), get it directly Just
    • If not, get it from the warehouse (query to the registry). For example, the version of a package in packaeg.json is ^1.1.0, npm will go to the warehouse to get the latest version that conforms to the 1.x.x format.
    Get module entity.
  • The previous step will get the compressed package address of the module (resolved field). npm will use this address to check the local cache. If it is in the cache, it will be taken directly. If not, it will be downloaded from the warehouse.

    Find the dependencies of this module
  • If there are dependencies, go back to step 1, if not, stop.

  • 4. Module flattening (dedupe)

What you get in one step is a complete dependency tree, which may include Lots of repetitive modules. For example, module A depends on loadsh, and module B also depends on lodash. Before npm3, installation was strictly based on the structure of the dependency tree, which resulted in module redundancy.

Starting from

npm3 version

, a dedupe process has been added by default. It will traverse all nodes and place the modules one by one under the root node, which is the first level of node-modules. When duplicate modules are found, they are discarded.

Here you need to define a duplicate module, which refers to the module name is the same and semver compatible

. Each semver corresponds to a permitted version range. If the permitted version ranges of two modules overlap, a compatible version can be obtained without having to have exactly the same version number. This allows more redundant modules to be removed during the dedupe process. .

For example, if the foo module under node-modules depends on lodash@^1.0.0, and the bar module depends on lodash@^1.1.0, then ^1.1.0 is a compatible version.

When foo depends on lodash@^2.0.0 and bar depends on lodash@^1.1.0, according to the rules of semver, there is no compatible version between the two. One version will be placed in node_modules and the other will remain in the dependency tree.

    For example, suppose a dependency tree originally looked like this:
  • node_modules
  • -- foo
  • ---- lodash@version1

-- bar

---- lodash@version2


Assuming that version1 and version2 are compatible versions, after dedupe it will become the following form:

node_modules

-- foo

-- bar

-- lodash (the retained version is the compatible version)


Assuming that version1 and version2 are incompatible versions, the subsequent versions are retained in the dependency tree:

node_modules

-- foo

-- lodash@version1

-- bar

---- lodash@version2



5 .Install module

This step will update node_modules in the project and execute the life cycle functions in the module (in the order of preinstall, install, postinstall).

6. Execute the project's own life cycle

If the current npm project has a hook defined, it will be executed at this time (in the order of install, postinstall, prepublish, and prepare).

The last step is to generate or update the version description file, and the npm install process is completed.

This article has ended here. For more other exciting content, you can pay attention to the JavaScript Video Tutorial column on the PHP Chinese website!

The above is the detailed content of In-depth understanding of NPM mechanism. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:segmentfault. If there is any infringement, please contact admin@php.cn delete
Vercel是什么?怎么部署Node服务?Vercel是什么?怎么部署Node服务?May 07, 2022 pm 09:34 PM

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

node.js gm是什么node.js gm是什么Jul 12, 2022 pm 06:28 PM

gm是基于node.js的图片处理插件,它封装了图片处理工具GraphicsMagick(GM)和ImageMagick(IM),可使用spawn的方式调用。gm插件不是node默认安装的,需执行“npm install gm -S”进行安装才可使用。

一文解析package.json和package-lock.json一文解析package.json和package-lock.jsonSep 01, 2022 pm 08:02 PM

本篇文章带大家详解package.json和package-lock.json文件,希望对大家有所帮助!

怎么使用pkg将Node.js项目打包为可执行文件?怎么使用pkg将Node.js项目打包为可执行文件?Jul 26, 2022 pm 07:33 PM

如何用pkg打包nodejs可执行文件?下面本篇文章给大家介绍一下使用pkg将Node.js项目打包为可执行文件的方法,希望对大家有所帮助!

分享一个Nodejs web框架:Fastify分享一个Nodejs web框架:FastifyAug 04, 2022 pm 09:23 PM

本篇文章给大家分享一个Nodejs web框架:Fastify,简单介绍一下Fastify支持的特性、Fastify支持的插件以及Fastify的使用方法,希望对大家有所帮助!

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

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

手把手带你使用Node.js和adb开发一个手机备份小工具手把手带你使用Node.js和adb开发一个手机备份小工具Apr 14, 2022 pm 09:06 PM

本篇文章给大家分享一个Node实战,介绍一下使用Node.js和adb怎么开发一个手机备份小工具,希望对大家有所帮助!

图文详解node.js如何构建web服务器图文详解node.js如何构建web服务器Aug 08, 2022 am 10:27 AM

先介绍node.js的安装,再介绍使用node.js构建一个简单的web服务器,最后通过一个简单的示例,演示网页与服务器之间的数据交互的实现。

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

Hot Tools

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.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!