This is a simple fullstack coding challenge designed to assess a candidate's experience with C# and React. The challenge should take approximately 20-30 minutes to complete for a senior developer.
backend/
- C# Web API projectfrontend/
- React TypeScript project
The main focus of this challenge is on the backend implementation. The candidate should work on the backend to create APIs that fetch data from the Fake Store API and return refined data through endpoints. The React frontend will consume these endpoints to display the data.
-
Navigate to the backend directory:
cd backend/CodingChallengeApi
-
Run the API:
dotnet run
-
The API will be available at
https://localhost:7000
(or a similar port) -
You can access the Swagger documentation at
https://localhost:7000/swagger
-
Navigate to the frontend directory:
cd frontend/coding-challenge-app
-
Install dependencies:
npm install
-
Run the development server:
npm start
-
The React app will be available at
http://localhost:3000
- Modify the
ProductService.cs
to fetch real product data from the Fake Store API - Implement data transformation to map the API response to our Product model
- Add proper error handling and logging
- (Optional) Implement caching to improve performance
- Ensure the frontend correctly consumes the backend API
- Display product images from the API
- Format the price with proper currency symbol
- (Optional) Add a simple filter to show products by category
- Code quality and organization
- Problem-solving approach
- API design and implementation
- Error handling
- Data transformation and mapping
- Performance considerations