What exactly is MEAN Stack?
I only know that MEAN Stack is used to develop web applications through front-end and back-end. What is MongoDB, ExpressJS, AngularJS, and NodeJS? #computer-programming #web-development #web-applications
3 answers
Michael’s Answer
MongoDB - This is your database. It's not a relational database but rather a no-sql database.
ExpressJS - It's a server-side javascript framework commonly used in conjunction with NodeJS.
AngularJS - This is a client-side javascript framework.
NODEJS - It's the server side framework.
Cuong’s Answer
MongoDB is a document-oriented database, it basically stores your data in collections made out of individual documents.
ExpressJS is simply also know as Express, is a web application framework for Node.js
AngularJS is mainly and probably frequently use by developers who create web apps. In HTML, Angular makes much of the code you would otherwise have to write completely redundant.
NodeJS is like a C-like language, like JavaScript. In definition, it is single-threaded and uses only a single CPU core
https://blog.cloudboost.io/mongodb-express-angularjs-1-6-and-nodejs-mean-29f136f482a9