- 查看系统中是否存在nodejs和npm:
# 检查系统是否存在nodejs与npm
which node npm
# 输出以下内容,则系统中已安装了nodejs与npm:
/usr/bin/node
/usr/bin/npm
- 查看nodejs与npm的架构信息和仓库信息:
# 命令行执行以下命令,查看nodejs使用的架构宏:
$ node
Welcome to Node.js v18.1.0.
Type ".help" for more information.
> os.arch()
'loong64'
>
# 查看npm使用的默认npm仓库地址:
$ npm config get registry
https://registry.npmjs.org/
# 此仓库是上游npm仓库,因为现在上游社区对LoongArch支持度不好,此阶段龙芯搭建了龙芯npm仓库
# 龙芯npm仓库地址:https://registry.loongnix.cn:5873
# 设置龙芯npm仓库地址:
$ npm set registry https://registry.loongnix.cn:5873
- 龙芯 npm 仓库存放了已适配好 LoongArch 架构的各种npm包
欢迎大家使用新世界龙芯npm仓库,若有所需要移植的软件欢迎大家来盖楼反馈,欢迎大家来此报bug~