search
HomeWeb Front-endJS TutorialIn-depth understanding of NPM mechanism

In-depth understanding of NPM mechanism

Mar 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
The Origins of JavaScript: Exploring Its Implementation LanguageThe Origins of JavaScript: Exploring Its Implementation LanguageApr 29, 2025 am 12:51 AM

JavaScript originated in 1995 and was created by Brandon Ike, and realized the language into C. 1.C language provides high performance and system-level programming capabilities for JavaScript. 2. JavaScript's memory management and performance optimization rely on C language. 3. The cross-platform feature of C language helps JavaScript run efficiently on different operating systems.

Behind the Scenes: What Language Powers JavaScript?Behind the Scenes: What Language Powers JavaScript?Apr 28, 2025 am 12:01 AM

JavaScript runs in browsers and Node.js environments and relies on the JavaScript engine to parse and execute code. 1) Generate abstract syntax tree (AST) in the parsing stage; 2) convert AST into bytecode or machine code in the compilation stage; 3) execute the compiled code in the execution stage.

The Future of Python and JavaScript: Trends and PredictionsThe Future of Python and JavaScript: Trends and PredictionsApr 27, 2025 am 12:21 AM

The future trends of Python and JavaScript include: 1. Python will consolidate its position in the fields of scientific computing and AI, 2. JavaScript will promote the development of web technology, 3. Cross-platform development will become a hot topic, and 4. Performance optimization will be the focus. Both will continue to expand application scenarios in their respective fields and make more breakthroughs in performance.

Python vs. JavaScript: Development Environments and ToolsPython vs. JavaScript: Development Environments and ToolsApr 26, 2025 am 12:09 AM

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

Is JavaScript Written in C? Examining the EvidenceIs JavaScript Written in C? Examining the EvidenceApr 25, 2025 am 12:15 AM

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript's Role: Making the Web Interactive and DynamicJavaScript's Role: Making the Web Interactive and DynamicApr 24, 2025 am 12:12 AM

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C   and JavaScript: The Connection ExplainedC and JavaScript: The Connection ExplainedApr 23, 2025 am 12:07 AM

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

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

Video Face Swap

Video Face Swap

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

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

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),