asdfでNode.jsの環境設定
たまに Ubuntu の新しい環境で Node.js を入れることがあるので、メモ代わりに環境設定法を書いておく。
ネットで検索するとMacだったり、yarnを入れてなかったりするので。
asdf インストール
基本は公式サイトに従う。
非常に丁寧に書いてある。
インストール
apt install curl git
git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.9.0
.zshrcに設定追加
. $HOME/.asdf/asdf.sh
既存のバージョンファイルも有効にする
これで .node-version も有効になる。プロジェクトによっては .node-version を使っているものもあるので。
legacy_version_file = yes
プラグインインストール
nodejs
https://github.com/asdf-vm/asdf-nodejs
latest
のところは使う Node.js のバージョンに合わせる。
asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
asdf install nodejs latest
asdf global nodejs latest
yarn
https://github.com/twuni/asdf-yarn
yarn は asdf でインストールするのが楽かなと思う。
npm でインストールすると新しい Node.js を入れた時に競合して面倒なことになる(過去に何度もあったので)。
asdf plugin add yarn
asdf install yarn latest
Author And Source
この問題について(asdfでNode.jsの環境設定), 我々は、より多くの情報をここで見つけました https://qiita.com/mkt1234/items/0333edac75c7a6ae2ce9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .