当前位置:网站首页>Nodejs installation and environment configuration
Nodejs installation and environment configuration
2022-04-23 16:47:00 【Hair loss programmer】
1、 Download and install
Enter official website , Choose according to your computer system and number of digits , I choose windows64 position .msi Format installation package
.msi and .zip Format difference :
.msi yes Windows installer Developed program installation file , It allows you to install , modify , Uninstall the program you installed . To put it bluntly .msi Namely Windows installer Data packets of , Encapsulate all the content related to the installation files in one package .
.zip It's a compressed package , After decompression, you can , No installation required
When the download is complete , Double click Install Package , Start installation , Always point next that will do , The default installation path is C:\Program Files Next , You can also customize it
npm package manager
Express npm Package manager
online documentation shortcuts
Online document shortcuts
Add to PATH
add to node Install path to environment variable
The installation is complete as shown in the figure , Here I modified node Installation path for C:\node
After installation ,.msi The format of the installation package has node.exe Add to system environment variable path in , If you download .zip Format , Because there is no installation process , So you need to manually node.exe Add the directory to the environment variable path in , See system variable validation
Now that we have node Add to global system variables , We can go straight to CMD Anywhere in the window node, open CMD window , Carry out orders node -v see node edition
$ node -v
v14.7.0
the latest version node At the time of installation, it also installed npm, perform npm -v see npm edition
$ npm -v
6.14.13
2、 Modify the global dependency package download path
By default , We're executing npm install -g XXXX When downloading the global package , The default location of this package is C:\Users\ user name \AppData\Roaming\npm\node_modules Next , Can pass CMD Instructions npm root -g see
C:\Users\liaijie\AppData\Roaming\npm\node_modules
It is recommended to set the storage location by yourself , Because if you put it in C disc , Will make the system disk space smaller , System disk resources are very important .
npm config set prefix "C:\node\node_global"
npm config set cache "C:\node\node_cache"
Or open c:\node\node_modules\npm.npmrc file , Revised as follows :
prefix =C:\node\node_global
cache = C:\node\node_cache
The above operation shows , Modify the global package download directory to C:\node\node_global, The cache directory is C:\node\node_cache, And automatically create node_global Catalog , and node_cache A directory is a cache directory , It will be created automatically when you download the global package
3、 Configure environment variables
Because we modified the download path of the global package , So naturally , The global package we download will be stored in c:\node\node_global\node_modules, And the corresponding cmd The instructions will be stored in c:\node\node_global
I install a package globally
npm install xxx
After installation , To execute the corresponding instructions , Likely prompt :
'xxx' Not an internal or external command , It's not a runnable program
Or batch files .
That's because when we execute instructions , It will default to node Find the command file in the installation root directory , Here it is xxx.cmd, And then there will be node Install... In the root directory node_modules Find the dependent package folder under , Here it is @xxx Folder , Because we modified the global package storage path , So of course I can't find it , So we need to add the global package storage path we specified to the system environment variable , So you can find
therefore Path There are two configurations in total
- C:\node\
- C:\node\node_global
4. Switch npm Mirror source
Switch the source of package download through the following command , Because the default source is slow , Switch to the source of Taobao in China , Can greatly improve this problem .
npm config set registry http://registry.npm.taobao.org
版权声明
本文为[Hair loss programmer]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231400278212.html
边栏推荐
猜你喜欢
英语 | Day15、16 x 句句真研每日一句(从句断开、修饰)
欣旺达:HEV和BEV超快充拳头产品大规模出货
人脸识别框架之dlib
批量制造测试数据的思路,附源码
Change the icon size of PLSQL toolbar
Pytorch: the pit between train mode and eval mode
Sail soft calls the method of dynamic parameter transfer and sets parameters in the title
详解牛客----手套
Project framework of robot framework
Solution of garbled code on idea console
随机推荐
关于局域网如何组建介绍
PostgreSQL列存与行存
Query the data from 2013 to 2021, and only query the data from 2020. The solution to this problem is carried out
Esxi encapsulated network card driver
Copy constructor shallow copy and deep copy
◰GL-着色器处理程序封装
Talk about browser cache control
05 Lua 控制结构
Gartner 发布新兴技术研究:深入洞悉元宇宙
Report FCRA test question set and answers (11 wrong questions)
Execution plan calculation for different time types
如何建立 TikTok用户信任并拉动粉丝增长
蓝桥杯省一之路06——第十二届省赛真题第二场
JMeter installation tutorial and solutions to the problems I encountered
【Pygame小游戏】10年前风靡全球的手游《愤怒的小鸟》,是如何霸榜的?经典回归......
博士申请 | 厦门大学信息学院郭诗辉老师团队招收全奖博士/博后/实习生
vim编辑器的实时操作
The solution of not displaying a whole line when the total value needs to be set to 0 in sail software
Solution of garbled code on idea console
深度学习100例 | 第41天-卷积神经网络(CNN):UrbanSound8K音频分类(语音识别)