This repo houses a CLI tool and custom github action for authenticating npm with AWS codeartifact
The below action will setup npm with the codeartifact registry scoped to the referenced package.
- name: npm codeartifact login
uses: MondoPower/[email protected]
with:
domain: "<domain-in-aws-codeartifact>"
repository: "<repository-in-codeartifact>"
scope: "<Package Scope (optional)>"
region: "<AWS Region>"
accountId: "<AWS AccountId>"
packageType: "<Package Type>" #Supports poetry or npm as arguments
Recommended for local usage, refer to the github action above for CI runners.
Add the following to package.json:
{
"awsCodeArtifact": {
"domain": "<domain-in-aws-codeartifact>",
"repository": "<repository-in-codeartifact>",
"scope": "<scope>",
"region": "<aws-region>",
"accountId": "<aws-account-id>",
"packageType": "<Package Type>" //Supports poetry or npm as arguments
}
}
}
Once you've added the config to your package.json. You will need to assumerole/set your aws credentials within your running context (CI/Terminal).
Then run codeartifact-auth
It will update your home directories .npmrc file with the scope and token information.
CodeArtifact Command Line Arguments
-a --accountId AWS AccountId associated with codeartifact repo
-d --domain The name of the domain that is in scope for the generated authorization token
-r --repository The name of the repository e.g. OrganisationNamePackages
-s --scope The npm scope for the private package e.g. @OrganisationName
-p --region The region the codeArtifact repository is hosted in e.g. us-east-1
-m --packageType The package type to set. Currently supports npm or poetry
-h --help display help page
Long options may be passed with a single dash.
Example
codeartifact-auth --accountId 290556015539 --domain mondo-artifacts --region ap-southeast-2 -r MondoNPMPackages -s @mondo
If you're using this tool on windows and you have installed it globally, you will need to set the path for npm packages. Otherwise the tool won't be picked up in your path.
Make sure you add it to your system path
e.g. %USERPROFILE%\AppData\Roaming\npm
example
Command usage on windows:
codeartifact-auth.cmd
- npm link
- build
- run
codeartifact-auth
- CLI Tool to take a config or argument list
- CLI/Github action support for removing scope. This is useful for users that want all their packages pulled via codeartifact instead of just privately scoped ones.