
node
哇咔 哇咔
这个作者很懒,什么都没留下…
展开
-
前端启动项目端口被占用处理
1.查看8880端口,复制进程PIDlsof -i :88802.杀死进程kill -9 4580原创 2021-09-23 16:45:28 · 865 阅读 · 0 评论 -
使用 n 命令切换 node/npm 版本
centos 下使用 yum 默认安装的 nodejs 版本为 v6.x。可以使用 n 命令来升级切换 nodejs 版本。1.安装 n 命令n 是一个 nodejs 管理工具,[https://github.com/tj/n] $ npm install -g n2.使用 n 安装 nodejs 版本安装最新版本$ n latest安装指定版本$ n node/13.11.0切换 nodejs 版本$ n选择已安装的版本 node/10.4.1原创 2021-03-24 23:46:49 · 12089 阅读 · 0 评论 -
Centos用yum方式安装nodejs和npm
Centos用yum方式安装nodejs和npm1 更新node.js各版本yum源 Node.js v7.x安装命令 curl --silent --location https://rpm.nodesource.com/setup_8.x | bash - Node.js v7.x安装命令 curl --silent --location https://rpm.nodesource.com/setup_7.x | bash - Node.js v6.x安装命令原创 2021-03-24 23:02:25 · 2151 阅读 · 0 评论