「Javascript/nodejs/yarnインストール」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→yarnとは) |
|||
行1: | 行1: | ||
==yarnとは== | ==yarnとは== | ||
− | npm互換のnodejsパッケージの依存関係を解消してくれるパッケージマネージャ | + | *npm互換のnodejsパッケージの依存関係を解消してくれるパッケージマネージャ |
− | + | *npmの代わりとなるパッケージマネージャ | |
− | npmの代わりとなるパッケージマネージャ | + | *YarnはFacebook、Google、Exponent、Tildeが開発 |
==インストール== | ==インストール== |
2018年1月12日 (金) 11:29時点における版
yarnとは
- npm互換のnodejsパッケージの依存関係を解消してくれるパッケージマネージャ
- npmの代わりとなるパッケージマネージャ
- YarnはFacebook、Google、Exponent、Tildeが開発
インストール
$ 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
管理開始
$ yarn