Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 877 Bytes

README.md

File metadata and controls

13 lines (10 loc) · 877 Bytes

A tourist place application with ReactJS, ASP.NET Core API and gRPC service

This project is combined with 3 individual projects:

  1. touristplacereactapp - fontend
  2. TouristPlaceAPI - backend
  3. APIGrpcService - backend service

Here is the details:

  • First one is a ReactJS application. This is for rendaring fontend UI with data provided by the API. This ReactJS project is designed with Class component. Here State is globally managed by Redux. And used React Router Dom for different page navigation.
  • Second one is a ASP.NET Core 6.0 API project. It is for provide backend data to ReactJS application. For getting data from database it use gRPC service(a separate project - third one) and get data as Protocol Buffers.
  • Third one is a gRPC service application. It is for interact with database with Entity Framework and provide data to API as Protocol Buffers.