まず、yarmの公式ウェブサイトを開きます。 [https://www.yarnpkg.com/zh-Hant/](https://www.yarnpkg.com/zh-Hant/)
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.この時点でヤーンがインストールされていますが、サーバーは海外にあり、後で使用するネットワークによって制限される可能性があるため、Aliのサーバーに切り替えます。効果図は次のとおりです。
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コマンドを記録します。
Recommended Posts