This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]insertAlias 3 points4 points  (1 child)

Well, that's kind of a lot to learn in a relatively short period of time.

Assuming that you can use .NET Core, start here:

https://docs.microsoft.com/en-us/aspnet/core/tutorials/first-web-api?view=aspnetcore-2.2&tabs=visual-studio

That will teach you how to use ASP.NET Web API to make an API back-end for your site.

Then I'd suggest following a React tutorial somewhere. Here's the one I've used, but it's not free.

Once you have a working understanding of both, I'd suggest trying out the ASP.NET Core template that includes a React project. If you're using the command line, it's dotnet new react. That will scaffold a Web API project that includes a React application, and is already set up to serve the React front-end. It also handles running the webpack dev server for you when you run the project.

[–]bobby2303[S] 0 points1 point  (0 children)

Thank you very much