In-depth understanding of NPM mechanism
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:
- Main NPM installation method
- NPM package information query
- 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 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]
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 itselfIf the current npm project is defined The preinstall hook will be executed at this time.
2. Determine the first-level dependency modulesThe 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
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.
-
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.
-
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 fromnpm3 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
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:
-- foo
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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.

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 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.

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

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.

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.

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.

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