- Tuesdays, 9a
- Wednesdays, 7p
- Thursdays, 5p
npm and pnpm are both javascript package managers. pnpm is much faster and i've had better ux with it.
Use pnpm.
git clone <repo>
cd <repo>
# Using npm
npm install
# Using pnpm
pnpm install
# Using npm
npm run dev
# pnpm
pnpm run dev
To create a production version of your app:
# Using npm
npm run build
# pnpm
pnpm run build