As a web developer can you explain why React is needed?

React

AI Dashboard is available on the Web, Apple, Google, and Microsoft, PRO version

As a web developer, can you explain why React is needed?

In the early days of the internet, web sites were essentially made of static HTML files. Web servers were little more than file servers, when a user would come to a url, the web server would simply fetch it, and send it to the user via their browser, along with all kind of assets, like fonts and images.

As a web developer, can you explain why React is needed?

The functionality of this kind of web pages are very limited, so eventually the web became more dynamic. When people would visit a page or interact with a form, instead of just fetching data, the server could perform an operation and prepare some content on demand. That content would still be sent to the user’s browser. There could also a little bit of code running on the browser, to animate pages, handle form and what not, but not very much.

So up until around 2010, that was the dominant model. Code could be involved to generate content but the browser wouldn’t do much, most of the logic would happen on servers which would just send prepared content to the browser.

However, in the early 2010s, this paradigm started to shift. With HTML5/CSS3, the browser became much more capable, and so people started to move the logic that would generate content from the server to the browser. Instead of sending a whole styled HTML page, a web server could just send the data needed to create it. Then, code could run on the browser to actually turn that data into HTML. That browser code could also update what the user would see, making just the required data calls.

Get 20% off Google Google Workspace (Google Meet) Standard Plan with  the following codes: 96DRHDRA9J7GTN6
Get 20% off Google Workspace (Google Meet)  Business Plan (AMERICAS) with  the following codes:  C37HCAQRVR7JTFK Get 20% off Google Workspace (Google Meet) Business Plan (AMERICAS): M9HNXHX3WC9H7YE (Email us for more codes)

Active Anti-Aging Eye Gel, Reduces Dark Circles, Puffy Eyes, Crow's Feet and Fine Lines & Wrinkles, Packed with Hyaluronic Acid & Age Defying Botanicals

So, in the early to mid 2010s, front-end code would typically:

  • render complex web pages from data retrieved from back-end,
  • simulate “navigation” between different views: when the user would do some actions, the entire page would change, the url would update etc. but without actually loading a new page from the server.
  • maintain the state of an application: the application could track certain things about the user and the session, and won’t have to reload that information from the server all the time.
  • dynamically update both contents and style of a web page.

Now, all of this is possible to do in “vanilla javascript”. But it’s really cumbersome to implement it, and especially tricky to do it in a performant way. There are millions and millions of “web apps” that are replacing the static “web sites” of old, and which all need to dynamically render content. Should developers reimplement that from scratch each time?

Enter the web frameworks such as React. These frameworks are abstractions that let the developers focus on the logic of their web app (where the data comes from, how content is organized) without being tied to the nitty gritty. Web frameworks make developers organize their code in building blocks called modules or components. Somebody could write a header component and someone else building a page could reuse that header component. And a third developer could change the header component, and that change would be reflected everywhere the component is used. Folks could also build 3rd party libraries compatible with the web framework ecosystem, that would address common problems that many developers face. For instance, someone could create a date picker component (a notably tricky interface) that anyone can reuse and customize. Or create a solution to deal with very long pages by only rendering what is in the browser viewport, and creating/deleting elements as a user would scroll.


AI Unraveled: Demystifying Frequently Asked Questions on Artificial Intelligence (OpenAI, ChatGPT, Google Gemini, Generative AI, Discriminative AI, xAI, LLMs, GPUs, Machine Learning, NLP, Promp Engineering)

To have the support of this ecosystem is a huge productivity boost. There are millions of developers who work with React, and the most popular React libraries are very elegant solutions to hard problems(the same could be said of Angular, Vue etc. though their communities are a bit smaller).

React and web frameworks aren’t exactly needed, in fact there is a reverse trend in the last couple of years to go back to server generated content in some cases or to only use vanilla javascript, but it’s a very solid foundation to build a web app.

As a web developer can you explain why React is needed?

Comments:

1- The specific rationale for React is state management and efficient page updates, it’s underlying power comes not just from the structure and tooling provided by it being a framework, but also the shadow-DOM and component lifecycle that along with state management empower greater interactivity without very slow inefficient page updates.

If you are looking for an all-in-one solution to help you prepare for the AWS Cloud Practitioner Certification Exam, look no further than this AWS Cloud Practitioner CCP CLF-C02 book

2- React isn’t needed, but it is a great framework that can reduce the amount of work you do in making a website/webapp.

React is great for widgets and implementing patterns. You can keep data/text separate from structure and behavior. React, angular and vue are all popular frameworks. Before that we used stuff like dust, handlebars, jQuery and UI libraries like dojo and jQuery UI.

Developers are always looking for ways to be more efficient and more maintainable. React is a current iteration tool for being more efficient.

3- It is needed as a pattern for the devs to create packages that will works (The React packages). In NPM there are many packages, but all them are following its own logic, docs or no docs, they are based on another packages, etc. With things like React, you are somehow limited to follow its rules and you are entering its ecosystem which is good. This is true for all frameworks/libraries.

React also has some configurations which follows the best practices (create-react-app, NextJS, etc), but this is the same and for others.

The difference is that React is close to JS and there is a lot of freedom, what to use like a package, starter pack, use or not Typescript.

  • Markdown
    by /u/SomeNameIChoose (React Native - Learn once, write anywhere.) on May 1, 2024 at 9:31 pm

    Hey, did someone here ever used react native markdown? I want to fetch mardown from supabas and render it. Does this work? Thanks submitted by /u/SomeNameIChoose [link] [comments]

  • Implement Popup menu
    by /u/Ultra-Reverse (React Native - Learn once, write anywhere.) on May 1, 2024 at 8:18 pm

    I’m trying to implement this popup menu. I could just have an absolutely positioned view that’s only visible on the button press but I’m looking for something more streamline and has that native “feel”. Any suggestions? Or am I stuck using reanimated to implement the animation. Thanks in advance. submitted by /u/Ultra-Reverse [link] [comments]

  • react-native-maps problem with private api key on android
    by /u/rox651 (React Native - Learn once, write anywhere.) on May 1, 2024 at 7:46 pm

    In my react native app, I have been using react-native-maps in order to render a map in some screens. In the google console there is an option that allows you to put your api key as private. With that option, there is not problem on IOS, the maps works correctly. On the other hand, with that option active, the maps don't work on Android. I would like to know if this is related with some configurations in the android folder or if I need to implement something else in my app. import { View } from 'react-native'; import MapView, { Marker, PROVIDER_GOOGLE } from 'react-native-maps'; import { mapCustomStyle } from '@/UI/assets/styles/MapStyles'; import MarkerIcon from '@/UI/assets/svg/MarkerIcon'; type TypeMapSingleProps = { latitude?: number | null; longitude?: number | null; containerStyles?: string; }; const MapSingle = ({ latitude, longitude, containerStyles, }: TypeMapSingleProps) => { return ( <View className={`${containerStyles ?? ''}`}> {latitude && longitude ? ( <MapView testID='map' className='w-full h-full' provider={PROVIDER_GOOGLE} initialRegion={{ latitude: latitude, longitude: longitude, latitudeDelta: 0.03, longitudeDelta: 0.03, }} customMapStyle={mapCustomStyle} > <Marker coordinate={{ latitude: latitude, longitude: longitude, }} > <MarkerIcon stroke='#FE2EFF' /> </Marker> </MapView> ) : null} </View> ); }; export default MapSingle; submitted by /u/rox651 [link] [comments]

  • Yarn v1 or npm
    by /u/apicgg (React Native - Learn once, write anywhere.) on May 1, 2024 at 7:32 pm

    Yarn v1 or npm for managing deps in react native? View Poll submitted by /u/apicgg [link] [comments]

  • I am fresher and looking for job in reactjs
    by /u/Inevitable-Owl2953 (React – A JavaScript library for building user interfaces) on May 1, 2024 at 6:59 pm

    submitted by /u/Inevitable-Owl2953 [link] [comments]

  • Masonry in both vertical & horizontal directions
    by /u/mr_derp_brain (React – A JavaScript library for building user interfaces) on May 1, 2024 at 6:14 pm

    Has anyone been able to accomplish vertical & horizontal masonry in React? A lot of these libraries seem to only support only one direction. submitted by /u/mr_derp_brain [link] [comments]

  • I have a React Native + Typescript App in which I'm using BottomTabNavigator which has NativeStackNavigator as screens. Now, I want that out of these stacks, the BottomTabNavigator is only visible on some screens. How do I do that?
    by /u/thenonu (React Native - Learn once, write anywhere.) on May 1, 2024 at 6:08 pm

    For instance, I do not want to see the BottomTabNavigator in RouteNames.CaptureAttendance and RouteNames.AttendanceSummary. Here are the relevant files. TabNavigator.tsx const Tab = createBottomTabNavigator(); const TabNavigator: React.FC = () => { const navigation = useNavigation(); return ( <Tab.Navigator screenOptions={{ tabBarActiveTintColor: '#5f31dd', tabBarStyle: { height: 60, paddingBottom: 5, paddingHorizontal: 0, }, }} > <Tab.Screen name="Home" component={HomePage} options={{ tabBarIcon: ({ color, focused }) => ( <FontAwesomeIcon icon="house" size={focused ? 24 : 20} color={color} /> ), }} /> <Tab.Screen name="Conversation" component={Conversation} options={{ tabBarIcon: ({ color, focused }) => ( <FontAwesomeIcon icon="comment" size={focused ? 24 : 20} color={color} style={{ marginRight: 10 }} /> ), tabBarLabelStyle: { marginRight: 10 } }} /> <Tab.Screen name="Control Room" component={ControlRoomNav} options={{ tabBarIcon: ({ color, focused }) => ( <FontAwesomeIcon icon="book-open" size={focused ? 24 : 20} color={color} /> ), headerShown: false }} listeners={({ navigation }) => ({ tabPress: (e) => { e.preventDefault(); navigation.navigate('Control Room', { screen: RouteNames.ControlRoom }); }, })} /> <Tab.Screen name="Dashboard" component={DashNav} options={{ tabBarIcon: ({ color, focused }) => ( <FontAwesomeIcon icon="chart-simple" size={focused ? 24 : 20} color={color} style={{ marginLeft: 10 }} /> ), headerShown: false, tabBarLabelStyle: { marginLeft: 10 }, }} listeners={({ navigation }) => ({ tabPress: (e) => { e.preventDefault(); navigation.navigate('Dashboard', { screen: RouteNames.Dashboard }); }, })} /> <Tab.Screen name="Profile" component={Profile} options={{ tabBarIcon: () => ( <Avatar size="xs" rounded="$full"> <AvatarFallbackText>Anukrati Mehta</AvatarFallbackText> </Avatar> ), }} /> </Tab.Navigator> ); }; export default TabNavigator; AppNavigator.tsx import TabNavigator from './TabNavigator'; const AppNavigation: React.FC = () => { return ( <NavigationContainer> <TabNavigator/> </NavigationContainer> ); }; export default AppNavigation; ControlRoomNav.tsx const Stack = createNativeStackNavigator(); const ControlRoomNav = () => { return ( <Stack.Navigator initialRouteName={RouteNames.ControlRoom}> <Stack.Screen name={RouteNames.ControlRoom} component={ControlRoom} options={{ headerShown: true }} /> <Stack.Screen name={RouteNames.CaptureAttendance} component={CaptureAttendance} options={{ headerShown: false }} /> <Stack.Screen name={RouteNames.ClassAttendance} component={ClassAttendance} /> <Stack.Screen name={RouteNames.StudentAttendance} component={StudentAttendance} /> <Stack.Screen name={RouteNames.AttendanceSummary} component={AttendanceSummary} options={{ headerShown: false }}/> </Stack.Navigator> ); }; export default ControlRoomNav; submitted by /u/thenonu [link] [comments]

  • ESLint configuration advice
    by /u/Aware-Leather5919 (React Native - Learn once, write anywhere.) on May 1, 2024 at 6:05 pm

    Hi guys. I am just starting to make the effort into better coding quality. As part of that effort, I am trying to integrate ESlinting into my project. The problem is that I have no experience with the tool, I know what is it used for but that is it. 1) I would like to ask how should I configure my ESLint, right now I have one activated and almost every file in the project is red outlined. I want to know if there is any specific configuration or Plugin I should be using for my daily job, and I would like something easy to start with, Typescript and React-Native oriented configuration/plugin. 2) Is the default ESLint configuration enough? I mean, I am not sure if the default configuration is oriented toward tsx and ts files, not even sure if it was generated with react-native in mind. Maybe it is just configured for javascript or jsx ​ Any info or suggestion is welcome! thanks! submitted by /u/Aware-Leather5919 [link] [comments]

  • Build A Backend REST API With Node JS From Scratch | Udemy Free course for limited time
    by /u/Ordinary_Craft (React – A JavaScript library for building user interfaces) on May 1, 2024 at 4:39 pm

    submitted by /u/Ordinary_Craft [link] [comments]

  • Open React Jobs Advertised on Linkedin
    by /u/bradtheblegger (React Native - Learn once, write anywhere.) on May 1, 2024 at 4:07 pm

    submitted by /u/bradtheblegger [link] [comments]

Ace the 2023 AWS Solutions Architect Associate SAA-C03 Exam with Confidence Pass the 2023 AWS Certified Machine Learning Specialty MLS-C01 Exam with Flying Colors

List of Freely available programming books - What is the single most influential book every Programmers should read



#BlackOwned #BlackEntrepreneurs #BlackBuniness #AWSCertified #AWSCloudPractitioner #AWSCertification #AWSCLFC02 #CloudComputing #AWSStudyGuide #AWSTraining #AWSCareer #AWSExamPrep #AWSCommunity #AWSEducation #AWSBasics #AWSCertified #AWSMachineLearning #AWSCertification #AWSSpecialty #MachineLearning #AWSStudyGuide #CloudComputing #DataScience #AWSCertified #AWSSolutionsArchitect #AWSArchitectAssociate #AWSCertification #AWSStudyGuide #CloudComputing #AWSArchitecture #AWSTraining #AWSCareer #AWSExamPrep #AWSCommunity #AWSEducation #AzureFundamentals #AZ900 #MicrosoftAzure #ITCertification #CertificationPrep #StudyMaterials #TechLearning #MicrosoftCertified #AzureCertification #TechBooks

Top 1000 Canada Quiz and trivia: CANADA CITIZENSHIP TEST- HISTORY - GEOGRAPHY - GOVERNMENT- CULTURE - PEOPLE - LANGUAGES - TRAVEL - WILDLIFE - HOCKEY - TOURISM - SCENERIES - ARTS - DATA VISUALIZATION
zCanadian Quiz and Trivia, Canadian History, Citizenship Test, Geography, Wildlife, Secenries, Banff, Tourism

Top 1000 Africa Quiz and trivia: HISTORY - GEOGRAPHY - WILDLIFE - CULTURE - PEOPLE - LANGUAGES - TRAVEL - TOURISM - SCENERIES - ARTS - DATA VISUALIZATION
Africa Quiz, Africa Trivia, Quiz, African History, Geography, Wildlife, Culture

Exploring the Pros and Cons of Visiting All Provinces and Territories in Canada.
Exploring the Pros and Cons of Visiting All Provinces and Territories in Canada

Exploring the Advantages and Disadvantages of Visiting All 50 States in the USA
Exploring the Advantages and Disadvantages of Visiting All 50 States in the USA


Health Health, a science-based community to discuss health news and the coronavirus (COVID-19) pandemic

Today I Learned (TIL) You learn something new every day; what did you learn today? Submit interesting and specific facts about something that you just found out here.

Reddit Science This community is a place to share and discuss new scientific research. Read about the latest advances in astronomy, biology, medicine, physics, social science, and more. Find and submit new publications and popular science coverage of current research.

Reddit Sports Sports News and Highlights from the NFL, NBA, NHL, MLB, MLS, and leagues around the world.

Turn your dream into reality with Google Workspace: It’s free for the first 14 days.
Get 20% off Google Google Workspace (Google Meet) Standard Plan with  the following codes:
Get 20% off Google Google Workspace (Google Meet) Standard Plan with  the following codes: 96DRHDRA9J7GTN6 96DRHDRA9J7GTN6
63F733CLLY7R7MM
63F7D7CPD9XXUVT
63FLKQHWV3AEEE6
63JGLWWK36CP7WM
63KKR9EULQRR7VE
63KNY4N7VHCUA9R
63LDXXFYU6VXDG9
63MGNRCKXURAYWC
63NGNDVVXJP4N99
63P4G3ELRPADKQU
With Google Workspace, Get custom email @yourcompany, Work from anywhere; Easily scale up or down
Google gives you the tools you need to run your business like a pro. Set up custom email, share files securely online, video chat from any device, and more.
Google Workspace provides a platform, a common ground, for all our internal teams and operations to collaboratively support our primary business goal, which is to deliver quality information to our readers quickly.
Get 20% off Google Workspace (Google Meet) Business Plan (AMERICAS): M9HNXHX3WC9H7YE
C37HCAQRVR7JTFK
C3AE76E7WATCTL9
C3C3RGUF9VW6LXE
C3D9LD4L736CALC
C3EQXV674DQ6PXP
C3G9M3JEHXM3XC7
C3GGR3H4TRHUD7L
C3LVUVC3LHKUEQK
C3PVGM4CHHPMWLE
C3QHQ763LWGTW4C
Even if you’re small, you want people to see you as a professional business. If you’re still growing, you need the building blocks to get you where you want to be. I’ve learned so much about business through Google Workspace—I can’t imagine working without it.
(Email us for more codes)

error: Content is protected !!