A small wrapper around npm, yarn and pnpm to make jumping between projects with different managers a little easier
To setup, clone this repo and then run
npm run initThis will make the cli script executable and add the apm command to your path (via npm link).
To use this tool, simply replace the specific package manager command with this agnostic one.
To see the command mappings, run apm --help.
To add react, in an npm project you might run:
npm install reactOr in yarn:
yarn add reactIn apm, run:
apm add reactand it'll see what package manager you're running in your project and execute the correct command.
Running apr <command> is the same as running apm run <command>
Running apx <command> is the same as running apm dlx <command>