<?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: Sathish K</title>
    <description>The latest articles on DEV Community by Sathish K (@sathish_k_7c5712d0008c914).</description>
    <link>https://dev.to/sathish_k_7c5712d0008c914</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%2F3402593%2F8ef7fb76-f5f8-4631-942e-f3d9391d651e.png</url>
      <title>DEV Community: Sathish K</title>
      <link>https://dev.to/sathish_k_7c5712d0008c914</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sathish_k_7c5712d0008c914"/>
    <language>en</language>
    <item>
      <title>Test Question</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Sat, 08 Nov 2025 17:22:37 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/test-question-27l6</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/test-question-27l6</guid>
      <description>&lt;p&gt;&lt;strong&gt;Different between static  and non static variable.&lt;/strong&gt;&lt;br&gt;
Static variable:&lt;br&gt;
It is can be accessed using the class.&lt;br&gt;
It is the accessed by the static and non static methods.&lt;br&gt;
It is a reduce the amount of the memory used by the program.&lt;br&gt;
It is a existing the entire lifetime of the program.&lt;br&gt;
It is default value is can assigned automatically.&lt;/p&gt;

&lt;p&gt;Non static variables:&lt;br&gt;
It is can be accessed using the instance of the class.&lt;br&gt;
It is cannot be accessed by the inside the static variables.&lt;br&gt;
It is not reduce the amount of the memory used by the program.&lt;br&gt;
It is the existing the lifetime of the program.&lt;br&gt;
It's a default value is cannot assigned automatically.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Different between the local and global variables.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Local variable:&lt;br&gt;
Local variable are declared within the block of the code,such as method or function and have limited scope and lifetime. The code is execution only within the block.&lt;/p&gt;

&lt;p&gt;Global Variable:&lt;br&gt;
Global variables are declared the program within the outside of the any function and can be accessed from any part of the program, persisting throughout is execution.  &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Different between the method and constructor.&lt;/strong&gt;&lt;br&gt;
Method:&lt;br&gt;
A method must have a return type.&lt;br&gt;
A method is a collection of the statement which return a value upon its execution.&lt;br&gt;
A method cannot create object run to with automatically.&lt;br&gt;
Same method name with different parameters&lt;br&gt;
A method is consisted of java code to the executed.&lt;br&gt;
Constructor:&lt;br&gt;
A constructor doesn't have a return type.&lt;br&gt;
A constructor is a block of code that can initialize a newly object to create.&lt;br&gt;
A constructor can be create a object is run to with automatically.&lt;br&gt;
Same Constructor name with different parameter list.&lt;br&gt;
A constructor can be used to initialize an object.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Constructor</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Sat, 08 Nov 2025 17:03:48 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/constructor-26in</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/constructor-26in</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is the use of constructor and how to create constructor?&lt;/strong&gt;&lt;br&gt;
A constructor use is to initialize a new object of the class when it is created, ensuring it attributes have a valid state, often by setting the default or user defined values.To be create a same name of a class and no return type. It is a automatically called when you be new keyword to instantiate the object.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is constructor overloading ?&lt;/strong&gt;&lt;br&gt;
A constructor overloading is the techique in Java is feature is allowed when a class can multiple constructor with same class name with different parameters is called as constructor overloading.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>OOP- Object Oriented Programming Language</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Fri, 07 Nov 2025 17:32:19 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/oop-object-oriented-programming-language-52kl</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/oop-object-oriented-programming-language-52kl</guid>
      <description>&lt;p&gt;&lt;strong&gt;Why is study OOP ?&lt;/strong&gt;&lt;br&gt;
Studying the OOp is important because it create the more organized, secure, reusable code, which make the software development is faster, easier to maintain and more efficient.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Platform independent ?&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>learning</category>
      <category>programming</category>
    </item>
    <item>
      <title>Primitive Data Type, class and object, OOPS in Java</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Tue, 14 Oct 2025 18:00:19 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/primitive-data-type-class-and-object-oops-in-java-4fa6</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/primitive-data-type-class-and-object-oops-in-java-4fa6</guid>
      <description>&lt;p&gt;*&lt;em&gt;What is primitive datatype ? *&lt;/em&gt;&lt;br&gt;
In Java, primitive data type is a fundamental building blocks storing and manipulating data values. They are the predefined langauage and are not considers the objects.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Types of primitive data types&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;bytes&lt;/li&gt;
&lt;li&gt;short&lt;/li&gt;
&lt;li&gt;int&lt;/li&gt;
&lt;li&gt;long&lt;/li&gt;
&lt;li&gt;float&lt;/li&gt;
&lt;li&gt;double&lt;/li&gt;
&lt;li&gt;char&lt;/li&gt;
&lt;li&gt;boolean&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;What is OOPs in Java ?&lt;/strong&gt;&lt;br&gt;
OOP- Object Oriented Programming language&lt;br&gt;
In Java is a programming paradigm based on the concept of objects,classes. It's aims is structure software program in a way of real world entities and their interaction, promoting code reusability,modularity and maintainability.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is Class in Java ?&lt;/strong&gt;&lt;br&gt;
In Java, a class serves as a blueprint or a template for creating the objects. It is fundamental concept in OOP and define the structure and behavior that objects of that class will posses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What the Object in Java ?&lt;/strong&gt;&lt;br&gt;
In Java , an object is a fundamental concept in OOP and represents a real-world entity or a component within a program.It is an instance of a class.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>java</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>JDK, JVM, JRE and JIT</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Tue, 14 Oct 2025 17:21:38 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/jdk-jvm-jre-and-jit-19j8</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/jdk-jvm-jre-and-jit-19j8</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is JDK ?&lt;/strong&gt;&lt;br&gt;
JDK- Java Development Kit &lt;br&gt;
JDK is a software development environment used to  develop java application.Its includes the Java Runtime Environment(JRE) to run the program and also contains tools like the javac compiler and debugger to write,compile and debug code.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is JVM ?&lt;/strong&gt;&lt;br&gt;
JVM- Java Virtual Machine&lt;br&gt;
The Java Virtual Machine(JVM) is that enables a computer to run the java program,as well as program written in the other language that are compiled to java bytecode.It is a core of component of Java Runtime Environment and responsible for java "Write Once, Run Anywhere" (WORA) capability.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the JRE ?&lt;/strong&gt;&lt;br&gt;
JRE- Java Runtime Environment&lt;br&gt;
The Java Runtime Environment is a software package to provides the necessary components to run the java program.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is JIT ?&lt;/strong&gt;&lt;br&gt;
JIT- Just-In-Time&lt;br&gt;
It is a crucial component in Java Runtime Environment(JRE)&lt;br&gt;
and plays a significant role in optimizing the performance of the java application during execution code.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Java Introduction</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Mon, 13 Oct 2025 17:13:18 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/java-introduction-4b5d</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/java-introduction-4b5d</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is Java ?&lt;/strong&gt;&lt;br&gt;
 Java is a high-level programming language.&lt;br&gt;
 Java is a (oops) object-oriented programming language.&lt;br&gt;
 Java is a open source platform.&lt;br&gt;
 And platform independence that power of billion devices and        application worldwide from enterprise software to mobile apps.&lt;br&gt;
 Its original name is a Oak in 1992.&lt;br&gt;
 The team at Sun Microsystems that developed the language.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;**Syntax:**
public static void main(String[]args){

}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Who is the father of Java program ?&lt;/strong&gt;&lt;br&gt;
James Gosling is the father of Java programm in 1995.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is a Platform independent ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Platform independent in java means a program can be run in any operating system (OS) (likes windows,linux,macOS) without needing to be changed or recompiler.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq4dgg1i6tvl7tufg4y4t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq4dgg1i6tvl7tufg4y4t.png" alt=" " width="686" height="367"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the compiler ?&lt;/strong&gt;&lt;br&gt;
In Java, a compiler is a program that translates human-readable Java source code into platform-independent Java bytecode. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the bytecode ?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Bytecode in Java is an intermediate, low-level code generated by the Java compiler (javac) when it compiles a Java source file (with a .java extension). This compiled code is stored in files with a .class extension.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is interpreter ?&lt;/strong&gt;&lt;br&gt;
The interpreter reads and executes the bytecode instructions line by line, translating them into machine-specific instructions that the underlying operating system and hardware can understand and execute. This happens dynamically at runtime.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>java</category>
      <category>programming</category>
    </item>
    <item>
      <title>React.js Question 1</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Tue, 07 Oct 2025 17:47:54 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/reactjs-question-1-1985</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/reactjs-question-1-1985</guid>
      <description>&lt;p&gt;&lt;strong&gt;1.What is the difference between a functional component and a class component in React?&lt;/strong&gt;&lt;br&gt;
Functional component:&lt;br&gt;
 These are JavaScript function that accept the props as an arguments and return the JSX with the introduction of React Hooks manage the state and lifecycle methods.Its arrow function declaration.&lt;/p&gt;

&lt;p&gt;Class component:&lt;br&gt;
 These are ES6 classes that extend the react component and include a render() method that return the JSX.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.How does JSX work internally? Why do we need it instead of plain JavaScript?&lt;/strong&gt;&lt;br&gt;
 The internal process of converting JSX into valid JavaScript involves a transpilation step, typically handled by a tool like babel.&lt;br&gt;
Step of JSX.&lt;br&gt;
Transpilation.&lt;br&gt;
Element Creation.&lt;br&gt;
Virtual DOM.&lt;br&gt;
 JSX is not a requirement to use react but if offers significant advantage that makes it the preferred method for most developers.React code using only React.createElement() calls.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.What is virtual DOM and how does React we it for rendering ?&lt;/strong&gt;&lt;br&gt;
  The Virtual DOM (VDOM) is a lightweight in memory representation of the actual DOM.It is a JavaScript object that mirror the structure of real DOM, including element ,attributes and their children.&lt;br&gt;
&lt;strong&gt;Uses:&lt;/strong&gt;&lt;br&gt;
 Initial Render,State or props change,Diffing,Batch update and Real DOM.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.Explain Props vs State with an example.&lt;/strong&gt;&lt;br&gt;
Props:&lt;br&gt;
 Props(Properties) are the data passed down from a parent to a child components acting like arguments to a function and are generally read-only.&lt;/p&gt;

&lt;p&gt;State:&lt;br&gt;
 State is a internal to a component,representing data that can change overtime within that component and is managed internally often using hooks like useState.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;5.What is lifting state up in React?&lt;/strong&gt;&lt;br&gt;
 Lifting state up is a React pattern where you move shared state from child component to their closet common parent.This allows multiple child components to communicate and stay in sync via the shared state in the parent.&lt;/p&gt;

</description>
      <category>interview</category>
      <category>javascript</category>
      <category>beginners</category>
      <category>react</category>
    </item>
    <item>
      <title>UseState in React.js</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Wed, 01 Oct 2025 17:24:40 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/usestate-in-reactjs-3cia</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/usestate-in-reactjs-3cia</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is UseState ?&lt;/strong&gt;&lt;br&gt;
 The UseState is the hooks in React.js. It is the fundamental hook is allow to functional components to manage and update the internal state.It is a inbuilt function.Its add to state variables to functional components.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Syntax:

const[state,setState]=usestate(0)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Example:

import React, { useState } from 'react';

function Counter() {
  const [count, setCount] = useState(0); // Initialize count to 0

  const increment = () =&amp;gt; {
    setCount(prevCount =&amp;gt; prevCount + 1); // Update count based on previous state
  };

  return (
    &amp;lt;div&amp;gt;
      &amp;lt;p&amp;gt;Count: {count}&amp;lt;/p&amp;gt;
      &amp;lt;button onClick={increment}&amp;gt;Increment&amp;lt;/button&amp;gt;
    &amp;lt;/div&amp;gt;
  );
}

export default Counter;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>JSON</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Mon, 22 Sep 2025 16:59:14 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/json-gml</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/json-gml</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is a JSON ?&lt;/strong&gt;&lt;br&gt;
JSON- JavaScript Object Notation.&lt;br&gt;
A JSON file is a contains structured text in JavaScript Object Notation(JSON)format,a human readable,text-based format for storing&lt;br&gt;
and transmitting data,primarily used for data exchange between a web server and a client.&lt;br&gt;
&lt;strong&gt;How JSON Files Store Data ?&lt;/strong&gt; &lt;br&gt;
JSON files contain structured data in two primary forms: &lt;/p&gt;

&lt;p&gt;Objects: Collections of unordered key-value pairs, enclosed in curly braces {}. &lt;/p&gt;

&lt;p&gt;Arrays: Ordered lists of values, enclosed in square brackets []. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;what are the uses of JSON ?&lt;/strong&gt;&lt;br&gt;
   Data Exchange.&lt;br&gt;
   API.&lt;br&gt;
   Configuration file.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why JSON is Popular ?&lt;/strong&gt;&lt;br&gt;
   Simplicity.&lt;br&gt;
   Lightweight.&lt;br&gt;
   Wide Compatibility.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>What is the React.js,JavaScript and JavaScript XML</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Wed, 10 Sep 2025 16:23:30 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/what-is-the-reactjsjavascript-and-javascript-xml-69p</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/what-is-the-reactjsjavascript-and-javascript-xml-69p</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is the React.js ?&lt;/strong&gt;&lt;br&gt;
React is a library for building a user interfaces and open source platform.Its used for UI components based.The facebook and meta is created and maintain the React.&lt;br&gt;
It is defined as the single page application.It is a declarative,efficient and flexible in JavaScript.when virtual DOM,which is a ligth weight memory.React is a faster and improve the performance.&lt;br&gt;
&lt;strong&gt;Drawback.&lt;/strong&gt;&lt;br&gt;
  1.Learning Curve&lt;br&gt;
  2.JSX is complexity&lt;br&gt;
  3.It is only used the library&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the JS ?&lt;/strong&gt;&lt;br&gt;
JS- JavaScript is a programming language.It is a general-purpose scripting language primarily used to web development to add the interactivity and dynamic behavior to websites. It can be executed the directly web browser.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let dev= Hello;
console.log(dev);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;What is a JSX ?&lt;/strong&gt;&lt;br&gt;
JSX-JavaScript XML is a syntax extension for JavaScript. It is allow the developer to write HTML like a code directly within JavaScript files. JSX is commonly used to liberies like React to describe the structure of user interface in a declarative way.&lt;br&gt;
It is used to define the UI components.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let element=&amp;lt;h1&amp;gt;Hello&amp;lt;/h2&amp;gt;;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>NPM,NPX,CRA and VITE in JavaScript.</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Wed, 10 Sep 2025 16:03:14 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/npmnpxcra-and-vite-in-javascript-53n8</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/npmnpxcra-and-vite-in-javascript-53n8</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is NPM ?&lt;/strong&gt;&lt;br&gt;
NPM- Node Package Manage.&lt;br&gt;
It is a world largest software libary.&lt;br&gt;
It is open source the developers are use this software and run script.&lt;br&gt;
It is a managing the dependencies your project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;git commands:&lt;/strong&gt;&lt;br&gt;
sudo apt install npm&lt;br&gt;
npx create-react-app name&lt;br&gt;
cd name&lt;br&gt;
npm start&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;vite&lt;/strong&gt;&lt;br&gt;
npm create vite@latest&lt;br&gt;
project name &lt;br&gt;
react .js&lt;br&gt;
javascript&lt;br&gt;
cd name &lt;br&gt;
npm start&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is NPX ?&lt;/strong&gt;&lt;br&gt;
NPX- Node Package eXecutes &lt;br&gt;
It is a command line utility the bundled with NPM.&lt;br&gt;
Its verision is 5.2.0.&lt;br&gt;
NPX is primary purpose for the allow of the developer executes the node.js package is directly npm.&lt;br&gt;
Its need for prior global or local installation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the CRA ?&lt;/strong&gt;&lt;br&gt;
CRA- Create React App&lt;br&gt;
Create React App is the command line tools offically. &lt;br&gt;
The react team are help to set up a new react projects with good default configuration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the VITE ?&lt;/strong&gt;&lt;br&gt;
VITE is a modern javascript built up the designed tools help the faster and lerner development the experience for web project.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>NPM,NPX,CRA and VITE in JavaScript.</title>
      <dc:creator>Sathish K</dc:creator>
      <pubDate>Fri, 05 Sep 2025 18:06:24 +0000</pubDate>
      <link>https://dev.to/sathish_k_7c5712d0008c914/npmnpxcra-and-vite-in-javascript-32kn</link>
      <guid>https://dev.to/sathish_k_7c5712d0008c914/npmnpxcra-and-vite-in-javascript-32kn</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is NPM ?&lt;/strong&gt;&lt;br&gt;
NPM- Node Package Manage.&lt;br&gt;
It is a world largest software libary.&lt;br&gt;
It is open source the developers are use this software and run script.&lt;br&gt;
It is a managing the dependencies your project.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is NPX ?&lt;/strong&gt;&lt;br&gt;
NPX- Node Package eXecutes &lt;br&gt;
It is a command line utility the bundled with NPM.&lt;br&gt;
Its verision is 5.2.0.&lt;br&gt;
NPX is primary purpose for the allow of the developer executes the node.js package is directly npm.&lt;br&gt;
Its need for prior global or local installation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the CRA ?&lt;/strong&gt;&lt;br&gt;
CRA- Create React App&lt;br&gt;
Create React App is the command line tools offically. &lt;br&gt;
The react team are help to set up a new react projects with good default configuration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is the VITE ?&lt;/strong&gt;&lt;br&gt;
VITE is a modern javascript built up the designed tools help the faster and learner development the experience for web project.&lt;/p&gt;

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