PurposeCurrent Node.js installation packages all come with an important tool package manager npm . npm has two main functions: downloading and managing third-party modules; building and running projects. The use of npm itself is not complicated, but it is not worry-free to use it in the mainland's network environment, and it adds a lot of workload. This article will explain the relevant content. npm init and package.json files There is usually a Usually the { "name": "naisu", "version": "1.0.0", "description": "lalala", "main": "index.js", "scripts": { "start": "node index.js" }, "author": "nx", "license": "ISC", "dependencies": { "electron-squirrel-startup": "^1.0.0", "serialport": "^9.2.4" }, "devDependencies": { "electron": "15.1.1", "electron-rebuild": "^3.2.3" } } Some of the fields are relatively important, and the relevant descriptions are as follows: nameProject Module installation and managementInstalling the Module Module installation uses When npm installs a module, it will also install the modules that the module depends on. By default, it will be installed in the When installing, you can add If a module is already installed, it will not be reinstalled when the installation command is executed again. You can use the When installing, you can use the Modules can also be installed globally using View installed modules Use Use Update Module Use Deleting a module Use npxnpx is a tool included in the new version of npm (since 5.2), which is mainly used to run modules: if the module exists in the project directory or system environment, run the module directly. If not, there is no need to install it. npx will download it to a temporary directory and then run it. Module compilation Some third-party modules are developed in other languages. These modules cannot be run directly and need to be compiled for the operating environment before they can be used. This requires compilation tools, the most common of which are These tools can be installed and compiled when needed, and most of the time npm will handle these things automatically. Some platforms can also install these tools when installing Node.js. For example, on Windows platforms, you can check the installation options when installing Node.js: It will install these tools after installing Node.js: If you didn't check this option when you first installed Node.js, you can just reinstall it. Version Control The version number of a module or project in Node.js consists of three numbers separated by dots, which are major version , minor version , and patch version from left to right. The version number rules themselves are nothing special, but there are many modifiers before and after the version numbers in npm management and package.json and package-lock.json files. These symbols specify the rules for module installation and update. The common rules are as follows:
Change sourceIn the network environment of mainland China, module download and installation errors or failures often occur, resulting in the program not running correctly. You can try the following steps to reinstall:
If the above method doesn't work, and there is no ladder or the ladder doesn't work, you can only try to change the source. Use nrm tool to change source The most convenient way to change npm sources is to use the nrm tool. You can use
Use cnpm instead of npm You can install SummarizeNode.js development is basically inseparable from the npm tool, but npm is also easy to use. The main problem you may encounter is network problems. In addition to npm and the above cnpm, Yarn is also a common package management tool in Node.js. For more information, please refer to its official link: https://classic.yarnpkg.com/lang/en/ This is the end of this article about the specific use of Node.js package manager npm. For more relevant Node.js package manager npm content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Timeline implementation method based on ccs3
>>: SQL implementation of LeetCode (175. Joining two tables)
Nginx optimization---hiding version number and we...
A design soldier asked: "Can I just do pure ...
I. Overview When writing HTML templates, spaces a...
Check the Python version python -V If it is below...
Table of contents 1. ChildNodes attribute travers...
Why do we need virtual dom? Virtual DOM is design...
Table of contents one. environment two. Precautio...
Preface MySQL database lock is an important means...
This is my first time using the element framework...
I rewrote my personal website recently. I bought ...
I want to make a page using CSS3 rounded corners ...
This article records the installation and configu...
The examples in this article are all written in s...
MySQL password is correct but cannot log in local...
Use Javascript to achieve the countdown effect, f...