当前位置:网站首页>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
边栏推荐
- MySQL 5.7 安装教程(全步骤、保姆级教程)
- Polar Parametrization for Vision-based Surround-View 3D Detection Paper Notes
- Write implicit join on view with jOOQ 3.14 synthetic foreign key
- flex layout (flexible layout)
- Mining game (C language)
- [Cartoon] 2021 full score programmer behavior comparison table (latest version)
- npm does not recognize the "npm" item as the name of a cmdlet, function, script file, or runnable program.Please check the spelling of the name, and if the path is included, make sure the path is corr
- 线程基础(一)
- APT + Transform 实现多模块应用Application生命周期分发
- 排雷小游戏(C语言)
猜你喜欢

The advantages of making web3d dynamic product display

6W+字记录实验全过程 | 探索Alluxio经济化数据存储策略

leetcode一步解决链表反转问题

Point Density-Aware Voxels for LiDAR 3D Object Detection Paper Notes

Kingdee International: Lost in half a year and last year, how does the business model of frantically burning money continue

Introduction to coredns

MySQL高级SQL语句(二)

目标检测重要概念——IOU、感受野、空洞卷积、mAP

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

使用TinkerPop框架对GDB增删改查
随机推荐
The virtual reality real estate display system foresees the future decoration effect in advance
flex布局(弹性布局)
pytorch常用函数
Luogu mini game Daquan (everyone who uses Luogu must know)
OAuth 授权协议 | 都云原生时代了,我们应该多懂一点OAuth ?
BGP+MPLS Comprehensive Experiment
Analysis of the source code of the JS UI framework of Hongmeng system
Integrate ssm (1)
Ant three sides: MQ message loss, duplication, backlog problem, what are the solutions?
MySQL索引常见面试题(2022版)
Home NAS server (4) | MergerFS and SnapRaid data backup
关于鸿蒙系统 JS UI 框架源码的分析
nacos安装配置和单机部署教程
C竞赛训练
BGP+MPLS综合实验
pl/sql之神奇的嵌套与变量生命周期
驱动页面性能优化的3个有效策略
如何优化OpenSumi终端性能?
zabbix email alarm and WeChat alarm
leetcode括号匹配问题——32.最长有效括号