LoginSignup
1
3

More than 5 years have passed since last update.

npm 環境復元コネタ

Last updated at Posted at 2017-01-08

事前処理

ユーザー情報

npm config set init-author-name username
npm config set init-author-email username@example.com

npmjsへアカウント登録

npm adduser # ユーザー情報を事前にセットしておくと、それを使ってくれるとのこと(自分はしなかった)
...

パッケージ情報保存

グローバルインストールするパッケージをnpmjsのstarとして保存

npm star package-name

復元

ユーザー情報は同じものを設定/もってくる

あわせてnpmrcにnpmjsのトークンが設定されていること

.npmrc
...
//registry.npmjs.org/:_authToken=ほげほげ

復元

npm stars | xargs npm install -g

apm stars --installみたいなことはしないんだろう(いろいろインストールする場所/状況がありえるので)
以上

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3