EOElizabeth Okorieinlizzy.hashnode.dev·Jul 16, 2023 · 1 min readSession , JWT and CookiesSession variables store temporary information to use for retrieving and viewing data on multiple web pages. It stores information on the server momentarily and it's far more secure since they are saved in binary or encrypted form and when a user logs...00
EOElizabeth Okorieinlizzy.hashnode.dev·Jul 16, 2023 · 1 min readSolid ArchitectureThis is an acronym for file object-oriented design principles. S - Single Responsibility Principle means a file or function should do one job to make them smaller and cleaner which makes it easier to maintain. O - Open-Close Principle simply means cl...00
EOElizabeth Okorieinlizzy.hashnode.dev·Jul 16, 2023 · 1 min readNoSQL vs SQLSQL stands for Structured Query Language and it is widely used in managing data. In this type of database, data are stored in rows and tables that are linked in various ways. One table may link to one or many others and it offers fast data storage an...00
EOElizabeth Okorieinlizzy.hashnode.dev·Jul 16, 2023 · 1 min readReact Life-CycleThere are three main phases of the react life-cycle, which are the mounting phase, the updating phase and the unmounting phase. The mounting phase is when a component is first created and inserted into DOM (Document Object Model). In this phase, seve...00
EOElizabeth Okorieinlizzy.hashnode.dev·Jul 16, 2023 · 1 min readServer-Side and Client-Side renderingServer-side refers to the happenings or processes that take place in the server part of a web application that is hosted. This process could include fetching data or rendering web pages. Client-side refers to the happening or process that takes place...00