今の方法として選んだ手段以外にも方法はあるが、基本的に追加インストールが少ない方法を優先して選択した
Node.js 18で利用できる機能から選択した
機能 | 今まで使っていた方法 | 今の方法 |
---|---|---|
パッケージ追加 | yarn add | npm install |
パッケージ更新 | ncu | npm outdated |
パッケージ取得 | yarn install | npm install |
パッケージ取得(本番リリース) | yarn install production –frozen-lockfile | npm ci –production |
ワークスペース利用 | yarn workspace workspace command |
npm command -w workspace |
テスト | jest | node –test |