Skip to main content
3 answers
4
Asked 798 views

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

+25 Karma if successful
From: You
To: Friend
Subject: Career question for you

4

3 answers


1
Updated
Share a link to this answer
Share a link to this answer

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.

1
0
Updated
Share a link to this answer
Share a link to this answer

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


0
0
Updated
Share a link to this answer
Share a link to this answer

Kislay’s Answer

MEAN Stack is a stack of technologies that are used to develop web-based applications.
0