当前位置:网站首页>Node installation and environment configuration
Node installation and environment configuration
2022-08-02 06:54:00 【m0_67392811】
NODE installation
①Node download After entering the node official website, choose to download the corresponding version Node.js;
I am windows64 so I downloaded the Windows64 version, the first option is the stable version, which most people will choose to use; the second option is the latest version of the current node update;

2 After downloading the node installation package, install it. Here you select your node installation location. The default is the c drive. You can modify it according to your own ideas; then click Next until the installation is complete.

③ Then you find run or win+r on the computer to open the command box and enter the cmd command to open the command window.


Enter the node -v command to see the version information displayed, and enter npm -v to output the corresponding version information.That proves that you have installed it and can use it.

Environment Configuration
Now your global repository is installed under the c drive, which can be viewed through the npm list -global command; so when you use npm to install the global module, the files under the c drive will be installedfolder, this will make your c drive data huge, so we can modify the default storage address; but if your c drive itself is relatively large and you don't care about the extra data stored, you can ignore this step.
Create two new folders under the folder where you installed node; node_cache (cache folder) node_global (global warehouse folder)

Then enter the command line
npm config set prefix "node_global address"
npm config set cache "address of node_cache"

At this time, your global warehouse address and cache address have been modified;
You can use the command line to install something to test it; for example, if I install webpack globally, you will see a webpack folder under node_global, and any modules you install globally can be placed in this folderturn up.

Next, you need to configure the environment, right-click on my computer-properties-find the advanced property settings, click the advanced tab, there is an environment variable in the lower right corner;


Open the path column of the user variable and change the address of npm to your global repository address


Then edit the system variable, find the path column, and modify the node column to the node_modules folder under the global address


At this point, the installation of node and the configuration of environment variables are over, and then you can use your node to install modules.
Let me introduce myself first. The editor graduated from Shanghai Jiaotong University in 2013. I worked in a small company and went to big factories such as Huawei and OPPO. I joined Alibaba in 2018, until now.I know that most junior and intermediate java engineers want to upgrade their skills, they often need to explore their own growth or sign up to study, but for training institutions, the tuition fee is nearly 10,000 yuan, which is really stressful.Self-learning that is not systematic is very inefficient and lengthy, and it is easy to hit the ceiling and the technology stops.Therefore, I collected a "full set of learning materials for java development" for everyone. The original intention is also very simple. I hope to help friends who want to learn by themselves but don't know where to start, and at the same time reduce everyone's burden.Add the business card below to get a full set of learning materials
边栏推荐
- What are the ways to improve software testing capabilities?After reading this article, it will take you up a notch
- The international top conference OSDI included Taobao system papers for the first time, and the device-cloud collaborative intelligence was recommended by the keynote speech of the conference
- 聪明人的游戏提高篇:第三章第二课:“桐桐数”(number)
- C竞赛训练
- Mining game (C language)
- Write implicit join on view with jOOQ 3.14 synthetic foreign key
- Nacos数据库配置
- 直播系统聊天技术(八):vivo直播系统中IM消息模块的架构实践
- Home NAS server (4) | MergerFS and SnapRaid data backup
- Redis(十一) - 异步优化秒杀
猜你喜欢
随机推荐
Nacos数据库配置
BGP experiment (route reflector, federation, route optimization)
How to install the specified version package with NPM and view the version number
Deep learning - CNN realizes the recognition of MNIST handwritten digits
pytorch basic operations: classification tasks using neural networks
金蝶国际:半年亏掉去年一年,疯狂烧钱的商业模式如何持续
Home NAS server (4) | MergerFS and SnapRaid data backup
直播系统聊天技术(八):vivo直播系统中IM消息模块的架构实践
MySQL联合查询(多表查询)
秒杀系统小demo
VMTK环境配置记录
Shell 脚本不同玩法
人工神经网络
node安装和配置(node-v12.20.2-x64 ) 以及node版本切换介绍
金山云团队分享 | 5000字读懂Presto如何与Alluxio搭配
What are the ways to improve software testing capabilities?After reading this article, it will take you up a notch
Write implicit join on view with jOOQ 3.14 synthetic foreign key
制作web3d动态产品展示的优点
Xgboost报错 ValueError: Invalid shape: (1650, 2) for label
MySQL(3)









