AWS npm install private codeCommit module
1 min readApr 28, 2018
if you want to use your private codeCommit repo as your npm module,
you can use these commands to install
git config --global credential.helper '!aws codecommit credential-helper $@' git config --global credential.UseHttpPath truegit config --global url."ssh://".insteadOf https://npm install --save git+https://<your_repo_url>#master
:)