Menu

Post image 1
Post image 2
Post image 3
1 / 3
0

React in javascript

DEV Community·Abinaya V·19 days ago
#Bd0UFsTl
Reading 0:00
15s threshold

Abinaya V

React
React is a JavaScript library used to build user interfaces, especially web applications.

It was created by Meta (formerly Facebook).

Enter fullscreen mode Exit fullscreen mode

Simple meaning
JavaScript → programming language
React → library built using JavaScript

** NPM Means:**
npm stands for Node Package Manager.

It is used to:

  • Install JavaScript packages/libraries

  • Manage project dependencies

  • Run scripts in projects

npm comes automatically when you install Node.js.

MPA

In web development, MPA means Multi-Page Application.

A Multi-Page Application loads a new HTML page from the server whenever the user moves to another page.

SPA

SPA means Single Page Application.

A Single Page Application loads only one HTML page initially, then updates content dynamically without reloading the entire page.

Difference between libraries and frameworks?

Read More