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