How MEAN stack works?

Amol Gaikwad
May 9, 2021

M ==> MongoDB
E ==> Express
A ==> Angular
N ==> Node

Client (Browser)
Angular ==> Role of Angular is to create UI of the application.

Server
Node , Express , MongoDB ==> This contains Business logic , Database , Authentication Logic

Client and Sever communicates using Request and Response using AJAX.

--

--