--- title: Choosing a package manager --- import GuideFeedback from "../../../../src/components/GuideFeedback"; A package manager is like a helper for your programs. It brings all the tools for your projects and makes sure they fit and work well together. It's like having someone organize things so you can work without problems. The most used ones are: - [npm](https://www.npmjs.com) - [Yarn](https://yarnpkg.com) - [pnpm](https://pnpm.io/) For this tutorial, we'll be using **[NPM](https://www.npmjs.com)**, to keep it simple. ---