Frontend Development¶
Guide for frontend development with React and TypeScript.
Development Setup¶
Prerequisites¶
- Node.js 18+
- npm
Running Locally¶
cd goals-tracker-front
npm install
npm run dev
Application will be available at http://localhost:5173
Development Commands¶
# Start dev server
npm run dev
# Run linter
npm run lint
# Build for production
npm run build
# Preview production build
npm run preview
Next Steps¶
- Review Frontend Architecture
- Learn about Docker Setup