【ubuntu】使用二進位制安裝包安裝node和npm並配置

代码诠释的世界發表於2024-12-05

一、官網

https://nodejs.org/zh-cn

二、安裝方法

1、下載安裝包

2、解壓安裝包到指定目錄

tar xf node-v14.21.0-linux-x64.tar.xz  -C ~/tools/ && cd ~/tools

3、配置環境變數

# node
export NODE_HOME=$HOME/tools/node-v14.21.0-linux-x64
export PATH=$NODE_HOME/bin:$PATH

export npm_config_cache=/home/tester/.npm/npm_cache
export npm_config_globalconfig=/home/tester/.npm/npm_global
export PATH=$PATH:/home/tester/.npm/npm_global/bin
export NODE_OPTIONS=--max_old_space_size=4096

生效配置

source ~/.bashrc

4、驗證

node -v

npm -v

三、配置npm

1、配置國內映象源

npm config set registry https://registry.npmmirror.com
#檢視已設定成功
npm get registry
https://registry.npmmirror.com/

2、配置快取目錄

可以直接編輯~/.npmrc檔案

新增:

cache=/home/tester/.npm/npm_cache

3、配置內網軟體源(需要的話)

registry=http://192.168.1.254:8081/repository/npm-all

當然還有一些其他設定,可以根據自己需要

參考連結:

https://www.jianshu.com/p/f36c19ca9524

相關文章