A tool to manipualte media file. You can change format of the video, change the video into an audio file, or extract a frame(a screenshot) from a vide
Being a good programmer is like a being a good painter. So if I adapt the concept of being a good painter to this programmer world, maybe I can be a d
String of text to sign the cookies. Verifies the browser got the cookies from OUR backend. Prevents session highjack.Shows the what kind of backend ga
uninitialize session if it is new but not modified. Save session in the db and give cookies to the browser only when the session is modified. (In my p
Session is created when a browser first reachs to a backend. And browser only gets the sessionID. Problem is that the default server-side session stor
middleware express-session send browser a cookie.Cookies: pieces of information that backend can give to the browser. A way of transporting and sendin
Middleware in Mongoose > Middleware is basically intercepts request and do something inside of the middleware and call next() to pass the request. (Ex
There are two parts to make specific requirement for the data to be inserted.more requirements make the data more specific.But there are similar requi
Callback is a function which runs after certain action is executed. Just like EventListener: btn.addEventListener("click", callbackFunction); callback
MongoDB > MongoDB is an open source cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like
mixing variable with text #{variableName} Ex) mixing variable with attributes(href, class, id...) \`${variableName}\` (inside backticks) Ex) POST
router.get(":parameter", controller);It is like ${variableName} inside of HTML elements.It lets you put variables inside of the routes.You can check t
If the request, router, and controller stored in a single page, it's gonna be very inefficient for editing or finding the specific part of the code. S
Allows you to manage URLs and controllers. Known as "mini application". Router(https://expressjs.com/en/4x/api.htmlRouter let you minimize and or
What is Morgan? > Morgan is HTTP request logger middleware for node.js Morgan link When Morgan function is called, Morgan returns middleware as order
software in the middle 🙄Middle of what => Between Request and Response.All middlewares are handlers, and all handlers are middlewares(?)middleware =
A way servers communicate with users, or servers communicate with each other.A HTTP method, a type of RequestFor example, when a user try to go to a w
In the server.jsexpress functionWhat is server(application)?Basically, server is a computer(without monitor or keyboard) which is turned on 24/7 and c