Member-only story
Dependencies and CodeArtifact
5 min readNov 3, 2024
Salut! In this guide, we’ll build on our previous projects and explore AWS CodeArtifact.
New Terms to Know:
- CodeArtifact: Think of AWS CodeArtifact as a private storage locker for backing up all your web app’s dependencies.
- Domain: In AWS CodeArtifact, a domain is like a large folder that helps you organize your project materials into smaller folders.
- Public Upstream Repository: This is a publicly available repository where you can source packages for your project. AWS CodeArtifact can pull dependencies from this repository, allowing you to use open-source libraries and tools.
- Compiling: Compiling translates your project’s code into a language that computers can understand and execute.
Steps We’ll Cover:
- Set Up Your Web App and Git Repo (Projects 1 and 2 of this series)
- Create Your Domain and Repository
- Connect to the CodeArtifact Repository
- Test Your CodeArtifact Connection
- Set Up an IAM Policy for Using CodeArtifact
Step 1: Set Up Your Web App and Git Repository
We’ve already completed steps one and two. If you need help, feel free to refer to them: