#author("2020-10-23T22:18:21+09:00","default:ryuichi","ryuichi")
#author("2020-10-23T22:26:38+09:00","default:ryuichi","ryuichi")
* 設定をグローバル、ユーザー、プロジェクトで使い分ける [#o64ff965]
** 設定ファイルのパス [#hbd1f045]
| 種別 | パス | パス(Windows) |h
| プロジェクトごと | /path/to/my/project/.npmrc | |
| ユーザーごと | ~/.npmrc | %USERPROFILE%\.npmrc |
| グローバル | $PREFIX/etc/npmrc | %APPDATA%\npm\etc\npmrc |
| ビルトイン | /path/to/npm/npmrc | |
** ユーザーごとの設定の変更 [#p5465d76]
** 設定の変更 [#s39b000f]
*** ユーザーごとの設定の変更 [#r868b095]
npm config set editor notepad
** グローバルの設定の変更 [#r8500211]
*** グローバルの設定の変更 [#z4cab28c]
npm config set -g editor notepad
*** プロジェクトごとの設定の変更 [#h8440853]
npm config set --userconfig ./.npmrc editor notepad
** 設定の確認 [#g85a3fb6]
*** ある項目の設定 [#id4516f0]
npm config get editor
*** すべての設定 [#y4fd06a2]
npm config ls -l
** 設定の削除 [#x3c47c71]
npm config delete editor
npm config delete -g editor
** 参考 [#secf3b4b]
https://docs.npmjs.com/misc/config