Table of Contents
Installation & query command
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):
Home Web Front-end JS Tutorial In-depth understanding of NPM mechanism

In-depth understanding of NPM mechanism

Mar 29, 2019 am 10:00 AM
css html html5 javascript node.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 of this Website
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

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use bootstrap in vue How to use bootstrap in vue Apr 07, 2025 pm 11:33 PM

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

React's Role in HTML: Enhancing User Experience React's Role in HTML: Enhancing User Experience Apr 09, 2025 am 12:11 AM

React combines JSX and HTML to improve user experience. 1) JSX embeds HTML to make development more intuitive. 2) The virtual DOM mechanism optimizes performance and reduces DOM operations. 3) Component-based management UI to improve maintainability. 4) State management and event processing enhance interactivity.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

How to set up the framework for bootstrap How to set up the framework for bootstrap Apr 07, 2025 pm 03:27 PM

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

How to write split lines on bootstrap How to write split lines on bootstrap Apr 07, 2025 pm 03:12 PM

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

How to insert pictures on bootstrap How to insert pictures on bootstrap Apr 07, 2025 pm 03:30 PM

There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

What Does H5 Refer To? Exploring the Context What Does H5 Refer To? Exploring the Context Apr 12, 2025 am 12:03 AM

H5referstoHTML5,apivotaltechnologyinwebdevelopment.1)HTML5introducesnewelementsandAPIsforrich,dynamicwebapplications.2)Itsupportsmultimediawithoutplugins,enhancinguserexperienceacrossdevices.3)SemanticelementsimprovecontentstructureandSEO.4)H5'srespo

See all articles