MERN Flashcards

1
Q

what does MERN stand for ?

A

MongoDB, Express, React, Node

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is Mongo DB?

A

creates database and stores data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is express?

A

creates a server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is React?

A

components to create user interface

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what are steps to create frontend of MERN

A

use React to build frontend using components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is the frontend also called?

A

client: the visible part of a full stack app

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

how do we start the frontend to see our project?

A

in the terminal: enter “npm start”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

when the server starts where do we see the front end?

A

http://local host: 3000

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

the front end has a header where users can do what ?

A

navigate to other pages : also they can sign in and login

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is the role of the client?

A

sends requests to the server and receives responses

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is our coding editor called?

A

VS code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is the backend also called?

A

server

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is the role of the server ?

A

to listen to requests from the frontend and return a response

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

For a MERN Project what dependencies do we often want to install?

A

node
react
express
mongoose
Apollo
GraphQL
JSON WEB TOKEN ( JWT)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is JWT used for?

A

authentication

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what is express js?

A

a backend web application framework based on Node.js

17
Q

what is node js?

A

a backend JavaScript runtime environment

18
Q

explain what is happening in the image ?

A

great job!

19
Q

how do we start the backend to see our project?

A

npm run dev

20
Q

what do routers do?

A

receives and sends data on computer networks

21
Q

what does Apollo do?

A

manages data with GraphQL