postman之newman 安装
下载地址https://nodejs.org/en/download/
+++++++++++++++++++++++++
1、安装环境
cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
2、官网下载下载Node.js
nodejs官网:https://nodejs.org/en/download/
3、解压、改名
xz -d node-v10.14.1-linux-x64.tar.xz
tar -xf node-v10.14.1-linux-x64.tar
mv node-v10.14.1-linux-x64/ node
进入bin目录下执行 ./node -v
cd node/bin/
./node -v
出现版本号
v10.14.1
创建node、npm的软连接,方便使用
ln -s /root/node/bin/node /usr/local/bin/node
ln -s /root/node/bin/npm /usr/local/bin/npm
查看是否出现版本
[root@localhost ~]# node -v
v10.14.1
[root@localhost ~]# npm -v
6.4.1
使用npm安装newman
npm install -g newman
提示
npm WARN deprecated circular-json@0.5.5: CircularJSON is in maintenance only, flatted is its successor.
/root/node/bin/newman -> /root/node/lib/node_modules/newman/bin/newman.js
+ newman@4.2.2
added 164 packages from 192 contributors in 23.999s
查看版本
[root@localhost ~]# newman -v
-bash: newman: 未找到命令
继续给newman创建软连接
ln -s /root/node/bin/newman /usr/local/bin/newman
查看版本
[root@localhost ~]# newman -v
4.2.2
安装成功!