LoginSignup
1
0

More than 3 years have passed since last update.

AmazonLinux上でNode.jsとYarnをインストールする

Posted at

下記を参考にさせていただきました。

環境

$ cat /etc/system-release
Amazon Linux release 2 (Karoo)

Node.jsのインストール

$ curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
$ sudo yum install -y nodejs

Yarnのインストール

$ curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
$ sudo yum install -y yarn

以上で完了です

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0