Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 612 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 612 Bytes

Hi there ! I'm learing express js I have no ideal what I am doing but maybe I want to code a website and epxress is something I need to learn

How json works ??? click to this link right now

make an applicatioin skeleton

npx express-generator

do you know anything about rounting ???

Routing refers to determining how an application responds to a client request to a particular endpoint, which is a URI (or path) and a specific HTTP request method (GET, POST, and so on).

Each route can have one or more handler functions, which are executed when the route is matched.

app.METHOD(PATH, HANDLER)