Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 956 Bytes

README.md

File metadata and controls

27 lines (16 loc) · 956 Bytes

ASPNET CORE + REACTJS + INERTIAJS

Quick starting guide for a .NET 8 ASPNET CORE Web MVC project that uses react in views through InertiaJS.

To get started with this project, you will need the following :

Getting Started

  • Restore the project dependencies using dotnet restore in the solution path

  • Once that is done, you should navigate into the ClientApp folder and install npm packages using npm install.

Running Project

  • Run ASP.NET CORE project, by using following command: dotnet watch in project directory

  • Run ReactJS project with the following command: npm run dev in the ClientApp directory.

Useful Documents