facebook twitter hatena line email

「Javascript/nodejs/yarnインストール」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(インストール)
行1: 行1:
 
==yarnとは==
 
==yarnとは==
nodejsパッケージの依存関係を解消してくれるインストーラー
+
nodejsパッケージの依存関係を解消してくれるパッケージマネージャ
 +
 
 +
npmの代わりとなるパッケージマネージャ
  
 
==インストール==
 
==インストール==

2018年1月12日 (金) 11:22時点における版

yarnとは

nodejsパッケージの依存関係を解消してくれるパッケージマネージャ

npmの代わりとなるパッケージマネージャ

インストール

$ curl -o- -L https://yarnpkg.com/install.sh | bash

パス追加

$ vi ~/.bash_profile
export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
$ source ~/.bash_profile

バージョン確認

$ yarn -V
yarn install v1.3.2