Click here to Skip to main content
15,888,610 members
Everything / Web Development / React

React

React

Great Reads

by Fred Song (Melbourne)
Global Weather - React App with ASP.NET Core 3.0
by Sacha Barber
A little demo app to try out OpenFin
by dsuryd
Simple, lightweight, yet powerful way to build real-time React + C# .NET web apps with dotNetify-React.
by Pankaj Kumar Choudhary
In this article, we learn what is pure component, how its works, and what are the benefits of pure component.

Latest Articles

by Zijian
A series of articles comparing programmer experiences of Angular, Aurelia, React, Vue, Xamarin and MAUI
by Zijian
How to generate strongly typed client API in TypeScript for ASP.NET Core
by Denny Boechat
The Importance of Secure Authentication in Web Applications and the Role of Identity Providers
by Ashish Rastogi @11819728
SharePoint Framework WebPart to retrieve list items using React & REST API

All Articles

Sort by Score

React 

5 Feb 2020 by Fred Song (Melbourne)
Global Weather - React App with ASP.NET Core 3.0
6 Mar 2019 by Sacha Barber
A little demo app to try out OpenFin
21 Mar 2017 by dsuryd
Simple, lightweight, yet powerful way to build real-time React + C# .NET web apps with dotNetify-React.
6 Mar 2018 by Pankaj Kumar Choudhary
In this article, we learn what is pure component, how its works, and what are the benefits of pure component.
27 Jun 2017 by Sacha Barber
In this post, we will be implementing the static screen designs.
9 Aug 2022 by Evoluteur
SVG icon set for CRUD applications packaged as a React component with light & dark themes and tooltip.
19 May 2022 by André Marcos (Advisor), GracianoSouza
React Native, Node.js and PostreSQL, a PERN stack to develop an app to support the lost pets searching process
12 Jun 2017 by Sacha Barber
This time, we will look at routing inside of a React application.
22 Dec 2017 by Philipp_Engelmann
How to allow the player and invaders to shoot each other, add a simple high-score and a GameOver-screen
26 Feb 2019 by Rahul Sabharwal
This article details the migration steps from Webpack 3 to Webpack 4.
8 Dec 2022 by Jerome Vonk
Granola is a web app for tracking your expenses with custom categories, reports and charts
10 Dec 2022 by raddevus
Drop in this React component and in 5 minutes, you can have it CRUDing your custom data.
27 Nov 2015 by Modesty Zhang
A practical example of utilizing Reactive Extensions RxJS for autonomous states in React components with greater expressiveness and concise code.
8 Jan 2018 by Manjunath Matathamana
This tutorial teaches you how to build a React application from scratch. In addition, we will be using fetch API with React to make asynchronous calls to a mock server.
13 Jun 2018 by Ryan Peden
A quick tip on adding labels to React form elements
11 Dec 2018 by Luis F. Penedo
Setting up a React project in Visual Studio 2017
17 Oct 2023 by Zijian
How to generate strongly typed client API in TypeScript for ASP.NET Core
26 Apr 2016 by Dave Kerr
I'm going to share my experiences of experimenting in Angular 2, as someone who needs a pretty compelling reason to move away from React/Redux!
5 Jul 2016 by Dave Ceddia
Do not use bind when passing props
11 May 2017 by Dave Ceddia
Convert React.createClass to ES6 Class
13 Jun 2017 by Dave Ceddia
How to create React app with Express in production
13 Sep 2017 by Dave Ceddia
5 projects to help you learn React
27 May 2018 by Dave Ceddia
You’ve got a React app, and an API server written in Express or something else. Now – how do you deploy them both to a server?
27 Apr 2020 by Sacha Barber
Small demo app using React/Redux and hooks
4 Jul 2016 by Dave Ceddia
React Gotchas
5 Oct 2016 by Dave Ceddia
How to divide React work between designers and developers
23 Jan 2017 by Dave Ceddia
Watch out for undefined state
21 Mar 2017 by Dave Ceddia
When you need to fetch some data for a React component, where do you do it?
30 Mar 2017 by Muddassir Mohammed
This article demonstrates how to implement a simple Flux workflow using React along with a working example.
4 May 2017 by Dave Ceddia
Convert React.createClass to Stateless Function Components
21 Jun 2017 by Karthik_Mahalingam
JavaScript Tutorial[^] MongoDB [^] Express js[^] Angular 1[^] (or) Angular 2[^] ( TypeScript [^] ) Node.js[^] RequireJS[^]
21 Jun 2017 by Peter Leow
Regardless of the technologies you use, the components of web architecture include: 1. Front-end - HTML - CSS - JavaScript 2. Back-end - Server-side scripting (specific) - database (specific) You should get yourself acquainted with the front-end components which are basic...
26 Jun 2017 by Dave Ceddia
Cheat to win: Learn React with Copywork
20 Sep 2017 by Sacha Barber
Play Framework Reactive Kafka producer
4 Oct 2017 by Dave Ceddia
Justifying React to the Business
18 Nov 2017 by rohit7209
How to change state of child from parent, state of parent from child and state of sibling from another sibling
29 Nov 2017 by Dave Ceddia
Immutable updates in React and Redux
23 Jan 2018 by Aregbesola Sunday J
This article shows how React can be used in SharePoint framework to solve the challenges posed by _RequestDigest when perform a POST operation in SharePoint.
2 Feb 2018 by Dave Ceddia
Where and when to fetch data with Redux
3 Mar 2019 by RickZeeland
For back end Django looks like a good choice: https://www.slant.co/topics/362/~best-backend-web-frameworks[^] For front end development Vue seems to be a good choice: https://www.slant.co/topics/5699/~javascript-frontend-frameworks[^] But what I'm missing in these lists is Knockout.js which...
15 Mar 2019 by SL-A-SH
this.state.data =[ {'name':'Fred','status':'Available','age':'15','country':'Canada'}, {'name':'George','status':'Unavailable','age':'17','country':'Russia'}, {'name':'Bill','status':'Unavailable','age':'61','country':'USA'} ]; I want to map over this array and return a html in react ...
29 Mar 2020 by morzel
Using measureText method to calculate widths of text and then use setColumnWidth to adjust columns
11 Aug 2020 by Sandeep Mewara
It's about deleting some HTML tags as required. Thus, you need to define an event and then wire that to find the element that needs to be removed (using JavaScript/jQuery) and then remove it. Like removing a table row using a delete button: ...
21 Sep 2020 by h311o
Yes! I solved this problem! It was because of the useEffect(), but it wasn't because it was being used twice. The problem was because I didn't add an empty array to my useEffect() function so that it would have only run once: // Save to Load ...
18 May 2021 by D_Gregorian
How to create a React-Native (iOS & Android) FileManager with Firebase Storage
10 Jun 2021 by markkuk
React fuctional components don't have a this variable, so remove all references to it. In App.js you should have: and in List.js: const deleteTask = (id) => { const newTodoList =...
12 Sep 2021 by Alen Toma
ObjectuseState - the behavior of React.UseState applies to object properties
2 Nov 2021 by Richard MacCutchan
install react on Android - Google Search[^]
15 Feb 2022 by Andre Oosthuizen
Try the following, just adjust the naming conventions to your own. Change your HTML markup to take more control on overflow:
2 Jun 2018 by Dave Ceddia
Everybody says don’t do it. Never mutate state directly, always call setState. But why, though?