首先打开yarm的官网。https://www.yarnpkg.com/zh-Hant/
1、上通过 Debian 套件安裝 Yarn,粘贴以下命令
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
2、接下來你可以很簡單的使用以下指令安裝:
sudo apt-get update && sudo apt-get install yarn
3、到这里yarn就安装完了,只不过服务器在国外,在后面的使用中会可能受到网络限制,所以我们切换成阿里的服务器,效果图如下:
yarn config set registry https://registry.npm.taobao.org
1、我们执行以下命令,对pm2进行一个全局安装:
npm install vue-cli pm2 -g
2、安装完成我们运行上一篇写的server.js.
这里说一下,通过node命令跑起来的js一但进程关闭或意外结束,我们就不能继续访问了。所以我们需要通过pm2来增加稳定性。
pm2 start server.js
运行成功后效果图如下:
如果到这里都成功的话就不用往下看了,如果pm2 安装失败,继续往下看。
之前我在ubuntu14.04上配置环境的时候一直出错,最后研究出了一套命令,可以正常安装,大家自行测试。
sudo apt remove cmdtest
sudo apt remove yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt update
sudo apt install yarn
yarn config set registry https://registry.npm.taobao.org
1 apt-get update
2 apt-get install apt-transport-https
3 curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
4 echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
5 apt-get update
6 apt-get install yarn
7 npm cache clean --force
8 npm install -g ionic cordova
9 npm install vue-cli pm2 -g
最后记录以下常用的一些pm命令: