facebook twitter hatena line email

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

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「==yarnとは== nodejsパッケージの依存関係を解消してくれるインストーラー ==インストール== $ curl -o- -L https://yarnpkg.com/install.sh | b...」)
 
(インストール)
行5: 行5:
 
  $ curl -o- -L https://yarnpkg.com/install.sh | bash
 
  $ curl -o- -L https://yarnpkg.com/install.sh | bash
  
 +
==パス追加==
 
  $ vi ~/.bash_profile
 
  $ vi ~/.bash_profile
 
  export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
 
  export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
 
 
  $ source ~/.bash_profile
 
  $ source ~/.bash_profile
 +
 +
==バージョン確認==
 
  $ yarn -V
 
  $ yarn -V
 
  yarn install v1.3.2
 
  yarn install v1.3.2

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

yarnとは

nodejsパッケージの依存関係を解消してくれるインストーラー

インストール

$ 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