Frontend of Kodemy, using Next.js, Typescript and Tailwind CSS.
npm ciRun the development server:
npm run devOpen http://localhost:3000 with your browser to see the result.
- Node.js
To check for outdated packages, run:
npm outdatedOr, to check for unused dependencies, run:
npx depcheckIf depcheck is not installed, install it globally by running:
npm install -g depcheckTo safely update dependencies, run:
npm updateNote: This command will update dependencies with patch changes (e.g.,
18.3.3to18.3.12) and minor updates (e.g.,1.7.4to1.8.1). It will not update major versions (e.g.,8.57.0to9.14.0), as major updates can introduce breaking changes.