Posts

Showing posts from December, 2021

Backend

  CRUD  Operations: The combination CRUD is C => Create, R => Read, U => Update and D => Delete, respectively.This means that when you create a web site or software, in order to keep the information of the software in the database, first you have to create or create a database, table and some data, and then we call it Create operation of CRUD. When we show or read the data we have created in the browser, then we call it Read Operation of CRUD. When we update and delete the data created in the same way with the browser, we call it the Update and Delete operation of CRUD. In computer programming, CRUD operation is considered as the engine of any software or web development. Mongoose: Object Data Modeling (ODM) is an Mongoose library for MongoDB and Node. js. It oversees connections between information, gives pattern approval, and is utilized to decipher between objects in code and the portrayal of those items in MongoDB. MySQL: MySQL means is an open-source relationa...

React simple discussion

  Introduction: React is a  user interfaces JavaScript library.  it is a “declarative, efficient, and flexible JavaScript library for building user interfaces”, as defined by its creators. It's Supports server-side rendering. Follows Unidirectional data flow or data binding. Uses reusable/composable UI components to develop the view. So ReactJS has taken the web development world by storm. Now I can describe about JSX, Virtual DOM etc.  About JSX: JSX (JavaScript XML) is a XML-like syntax extension to ECMAScript. That is allows to write HTML elements in JavaScript and place them in the DOM without any createElement()  and/or appendChild() methods.So we can easily write HTML in React. it calls the React.createElement() function. So we need to have to React in scope for JavaScript to know what to do with the compiled code.  Capitalized types indicate that the JSX tag is referring to a React component. These tags get compiled into a direct reference to the na...