React Tutorial - Learn React Basics | Poojaaa REACT Decription : React is a JavaScript library used for building interactive user interfaces, especially single-page applications. It allows developers to create reusable UI components and manage dynamic data efficiently. React is maintained by Meta (formerly Facebook) and is widely used in modern web development. 1. Use State : OPERATORS Step1 : Open Vs Code Step2 : Open New Terminal Step3 : node -v Step4 : npm -v Step5 : npx create-react-app my-app Step6 : src/App.js Step7 : App.js(Replace) import React, { useState } from 'react'; import './App.css'; function App() { const [num1, setNum1] = useState(0); const [num2, setNum2] = useState(0); const [result, setResult] = useState(''); const calculate = (op) => { const n1 = parseFloat(num1); const n2 = parseFloat(num2); let res = 0; ...
ASP.NET Core Overview ASP.NET Core is the new version of the ASP.NET web framework mainly targeted to run on .NET Core platform. ASP.NET Core is a free, open-source, and cross-platform framework for building cloud-based applications, such as web apps, IoT apps, and mobile backends. It is designed to run on the cloud as well as on-premises. Same as .NET Core, it was architected modular with minimum overhead, and then other more advanced features can be added as NuGet packages as per application requirement. This results in high performance, require less memory, less deployment size, and easy to maintain. ASP.NET Core is an open source framework supported by Microsoft and the community, so you can also contribute or download the source code from the ASP.NET Core Repository on Github . ASP.NET 3.x runs only on .NET Core 3.x, whereas ASP.NET Core 2.x runs on .NET Core 2.x as well as .NET Framework. ASP.NET Core
Comments
Post a Comment