A study project for the article "Debugging with AI: Can It Replace an Experienced Developer?".
Install the dependencies:
npm installRun the development server:
npm run devOpen http://localhost:3000 in your browser to see the application.
Create a production build:
npm run buildStart the production server:
npm start| Command | Description |
|---|---|
npm run dev |
Start development server |
npm run build |
Build for production |
npm start |
Start production server |
npm run lint |
Run ESLint |
npm run lint:fix |
Fix ESLint errors automatically |
npm run ts |
Run TypeScript type checking |
npm run format |
Format code with Prettier |
npm run format:check |
Check code formatting |