Skip to content

Dependency

Easy — everyone uses thisGeneral Dev

ELI5 — The Vibe Check

A dependency is a package your project relies on to work. Your app depends on React to render UI, axios to make requests, and dotenv to read config. Pull the dependency out and that part of your app breaks. Everything has dependencies — it's turtles all the way down.

Real Talk

A dependency is an external package that your project requires to function. Listed in package.json, requirements.txt, or similar manifest files, they are installed via a package manager. Dependencies can be direct (used by your code) or transitive (used by your dependencies).

When You'll Hear This

"That feature adds three new dependencies — is that justified?" / "Audit your dependencies regularly for security vulnerabilities."

Made with passive-aggressive love by manoga.digital. Powered by Claude.