split front end and back end

659 views Asked by At

Split stack development is an architecture pattern that separates front-end and back-end development into two separate “stacks” which function independently and communicate through an API ... for more info https://medium.com/@MentallyFriendly/split-stack-development-a-model-for-modern-applications-d7b9abb47bd5

so, we need help with that , how we can implement this ?? what type of API we should use ??? ...any resources ... any helping articles ... etc.

we are using AngularJs for front end and Asp.net core for back end.

1

There are 1 answers

1
GTHell On

Write restful API route on your ASP.net and deploy it on server. Use library like Axios to make API request in your AngularJs to that ASP.net server. That's what two separate stack mean.