React js Tutorial in hindi
React js एक Javascript Library है जिसे Facebook developers द्वारा विकसित और रखरखाव किया जाता है। यदि हम किसी भी प्रकार के Single page application का निर्माण करना चाहते हैं, तो React js हमारी भाषा में होना चाहिए। React js हमे user interface के component को पुन: उपयोग करने का एक तरीका भी प्रदान करती है। इस पाठ्यक्रम में, हम React js की मूल बातें learn करेंगे और अंत में, हम सीखेंगे कि components को कैसे बनाया जाए और उनका पुन: उपयोग कैसे करें।
React js is open source library . It is a efficient, declarative and flexible JS library for building user interfaces (UI). It lets you compose complex UIs from small and isolated pieces of code called “components”.
React js , Open source library है। Buidling UI बनाने के लिए एक घोषणात्मक, कुशल और लचीली Javascript Library है। यह आपको "घटक" नामक कोड के छोटे और पृथक टुकड़ों से Complex UI की रचना करने देता है। React js ,Memory मे VIRTUAL DOM बनाता है। React Features in hindi
ReactJS is gaining continue popularity as best known JavaScript framework. It is playing an most important role in the front-end ecosystem. The most important features of React JS Framework are following.
ReactJS सर्वश्रेष्ठ ज्ञात जावास्क्रिप्ट ढांचे के रूप में लोकप्रियता जारी रख रहा है। यह फ्रंट-एंड इकोसिस्टम में सबसे महत्वपूर्ण भूमिका निभा रहा है। रिएक्ट जेएस फ्रेमवर्क की सबसे महत्वपूर्ण विशेषताएं निम्नलिखित हैं।
- JSX
- Components
- One-way Data Binding
- Virtual DOM
- Simplicity
- Performance
What is ES6 in React JS in hindi ( ES6 क्या है ) ?
ES6 full form is ECMAScript 6. ECMA is a Scripting Language and ES6 is sixth version of ECMA Script. ECMAScript was created to standardize JavaScript. it was published in 2015, and is also known as ECMAScript 2015. you can learn ES6 in tutorials.
ES6 का फुल फॉर्म ECMAScript 6. ECMA एक स्क्रिप्टिंग लैंग्वेज है और ES6 ECMA स्क्रिप्ट का छठा संस्करण है। ECMAScript को जावास्क्रिप्ट को मानकीकृत करने के लिए बनाया गया था। यह 2015 में प्रकाशित हुआ था, और इसे ECMAScript 2015 के रूप में भी जाना जाता है। आप ट्यूटोरियल में ईएस 6 सीख सकते हैं।
What is JSX in hindi (JSX क्या है) ?
JSX means JavaScript XML. it allows us to write HTML code in React JS. JSX makes it easier HTML coding in React.
JSX का मतलब जावास्क्रिप्ट XML है। यह हमें React JS में HTML कोड लिखने की अनुमति देता है। JSX रिएक्ट में HTML कोडिंग को आसान बनाता है।
React js components in hindi :
Component is observed as the core building blocks of a React application.Components are reusable and independent bits of code. Component makes the task of building User Interface much easier. Each component exists in the same space, but they work independently from one another and merge all in a parent component, which will be the final User Interface of your application. Components having two types, Class components and Function components, in this tutorial you can learn all this things.
कम्पोनेंट को एक रिएक्ट एप्लिकेशन के कोर बिल्डिंग ब्लॉक्स के रूप में देखा जाता है। कम्पोनेंट पुन: प्रयोज्य और कोड के स्वतंत्र बिट्स हैं। कम्पोनेंट यूजर इंटरफेस के निर्माण के कार्य को बहुत आसान बनाता है। प्रत्येक कंपोनेंट एक ही स्थान पर मौजूद है, लेकिन वे एक दूसरे से स्वतंत्र रूप से काम करते हैं और सभी को एक पैरेंट कंपोनेंट में मर्ज करते हैं, जो आपके एप्लिकेशन का अंतिम यूजर इंटरफेस होगा।
React Props in hindi
Props means properties. It is another one component of react js , it is read only type component. Props makes you arguments passed into React components and work similar to HTML attributes.
Props का अर्थ है properties । यह react js का एक और एक component है, इसे केवल टाइप घटक पढ़ा जाता है। Props आपको प्रतिक्रिया घटकों में पारित तर्क और HTML विशेषताओं के समान काम करता है।
React State in hindi
React components has a built-in state object. The state is an updatable structure that is used to store data or info about the component. The state in a component can change over time.
React कम्पोनेंट में एक अंतर्निहित स्टेट ऑब्जेक्ट होता है। स्टेप एक अद्यतन योग्य संरचना है जिसका उपयोग डेटा या कम्पोनेंट के बारे में जानकारी संग्रहीत करने के लिए किया जाता है। एक कम्पोनेंट की स्थिति समय के साथ बदल सकती है।
React Life Cycle in hindi
In React JS , Every Component having own life cycle , which you can monitor in three phase .These phase are mounting , unmounting and updating.
रिएक्ट जेएस में, प्रत्येक कंपोनेंट का अपना जीवन चक्र होता है, जिसे आप तीन चरण में देख सकते हैं। यह चरण बढ़ते, बेमिसाल और अद्यतन होते हैं।
More to learn in Course | Enroll now
Write a public review