<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: naimur202163</title>
    <description>The latest articles on DEV Community by naimur202163 (@naimur202163).</description>
    <link>https://dev.to/naimur202163</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F778957%2F1537f3fb-5f68-4f1a-b2d4-77ab454e38cc.jpeg</url>
      <title>DEV Community: naimur202163</title>
      <link>https://dev.to/naimur202163</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/naimur202163"/>
    <language>en</language>
    <item>
      <title>About Node  js</title>
      <dc:creator>naimur202163</dc:creator>
      <pubDate>Thu, 23 Dec 2021 12:21:24 +0000</pubDate>
      <link>https://dev.to/naimur202163/about-node-js-24e</link>
      <guid>https://dev.to/naimur202163/about-node-js-24e</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                CRUD Operations
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Crud operation used in backend server for delete and update.post or get api form the backend server. Crud is  an  acronym that comes from the world of computer programming  ,and refers to the four functions that are considered necessary to implement a persistent application: create, read, update and delete.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                JWT
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Mainly jwt  is a one type of token format. It  is a standardized  authorization protocol which can use JWT as a token; it uses server-side and client-side storage. If we want to do real logout you must go with  jwt.we  use jwt for authentication to prevent our web site from hacker by using firebase&lt;br&gt;
                Mongoose&lt;br&gt;
Mongoose is a one type of node based system . It is  js-based object data modeling) library for a  MongoDB. It is akin to an Object Relational Mapper (ORM)  linke SQLAlchemy for traditional SQL databases. The problem is mongoose aims to solve is allowing developers to an  enforce a specific schema of the application layer.&lt;br&gt;
                    MySql&lt;br&gt;
For accessing any type of  database there are GUI tools that are more convenient and time-saving than Command Line tools.In  GUI tools are the ready-to-use visual interfaces which can be easily accessed by users though even if they don't have much technical knowledge. There are so many tools available to access the MySQL database.&lt;br&gt;
                Express&lt;br&gt;
Express is node framwork .it is very easy than raw node js system .By using node express js we can build real time web application using express js easily Express is a minimal and flexible Node js.In  web application framework that provides a robust set of features for web mobile applications.&lt;br&gt;
                Node&lt;br&gt;
Node is a device or data point in a big network.In networking a node is either a connection point or  redistribution point nad  a communication endpoint. In computer science, nodes are devices or data points on a  huge network and  devices such a PC, phone, or printer are considered nodes.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                Why we use Node js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Node is a javascript Runtime engine which uses google chrome v8 egine.By using node js we can write javascript code outside of the browser .We can also use it if the backend server node is faster than other backed services. Node. js is easily employed as a server-side proxy  and I handle a large amount of simultaneous connections in a non-blocking manner. Noise is especially useful for proxying different services with different response times  and  collecting data from multiple source points.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>React js</title>
      <dc:creator>naimur202163</dc:creator>
      <pubDate>Wed, 22 Dec 2021 14:20:07 +0000</pubDate>
      <link>https://dev.to/naimur202163/react-js-4mg3</link>
      <guid>https://dev.to/naimur202163/react-js-4mg3</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; In React js proptypes are a mechanism to ensure components use the correct data type to pass the right data that components use the right type of props that receiving components receive the right type of props.
            State-props
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;props are variables passed to its parent component .In React  State on the other hand is still variables and its  directly initialized and managed by the component. The state can be initialized by props in React js.&lt;br&gt;
                JSX&lt;br&gt;
   Jsx is a react element which looks like html but it is not html.Behind the seen it world link javascript&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                                     Component Lifecycle
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Component life cycle methods mean  which we can monitor and manipulate during its three main phases. The three phases are mounting, updating , unmounting.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;            Hooks
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;Hooks are functional   and lifecycle features from function components. Hooks don't work inside classes; it let you use react without classes.we  can also create our own Hooks to reuse stateful behavior between different components.&lt;br&gt;
                custom hooks&lt;/p&gt;

&lt;p&gt;In React js   custom Hooks are a part  to reuse stateful logic  and every time you use a custom Hook, all state and effects inside of it are fully isolated. Each call to a Hook gets isolated state&lt;br&gt;
                context API&lt;/p&gt;

&lt;p&gt;In React js context api  is a way for a React app to effectively produce global variables which can be passed around. This is the alternative to prop drilling nad  moving props from grandparent to child to parent  or so on. Context is also touted as an easie rand  lighter approach to state management using Redux.&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                React js
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;React js is a frontend framework that is most  popular nowadays.it is a very powerful framework .We can make single page web application using react js .Its give use so many powerful tools.It is developed by facebook React makes it painless to create  awesome ui design . Design is a  simple view  for each state in your application , React will efficiently update and render just the right components   your data changes.react. js is an open-source JavaScript library which is used for building user interfaces specifically for single-page web  applications&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
