Reactbook - app for study
Sample social app that allows students to sign up for events (similar to MeetUp or Facebook), developed on the basis of tutorials. The goal was to learn step by step how is building an app with .Net Core and React.
Tech | Usage |
---|---|
C# | .NET Language Used |
.NET | Web Framework Used |
Entity Framework Core | Serves as an object-relational mapper (O/RM) |
Postman | Used for API testing |
Axios | Library for handling HTTP requests with React |
Semantic UI React | React styling framework |
Visual Studio Code | IDE Used |
Install Packages
Run the command within the project directory to install packages from the project dependencies
$ cd ../Reactivities
$ npm install
Project Setup and Execution
Start the back-end implementation
$ cd ../Reactivities/API
$ dotnet run
Start the front-end implementation
In the 'client-app' project directory, you can run the React app:
$ cd Reactivities\client-app
$ npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
- Gosia Różańska - Gosia Różańska
- Neil Cummings - Tutorial - Udemy Course - THANKS!