September 8, 2017This article is part of a web development series from Microsoft. Thank you for supporting the partners who make SitePoint possible.
Managing data is essential to any application. Orchestrating the flow of data through the user interface (UI) of an application can be challenging. Often, today’s web applications have c...
May 30, 2017We live in interesting times. A short while ago, a company called OfferZen announced a new, programmable credit card. It’s been a long time since I was this excited to get my hands on a piece of tech. My mind has been brimming with ideas ever since.
So, I decided to write about one of them!
I’m going to des...
May 4, 2017This story is about stateless components. This means components that don’t have any this.state = { ... } calls in them. They only deal with incoming “props” and sub-components.
First, the Super Basics
import React, { Component } from 'react'class User extends Component {
render() {
const {...
April 27, 2017This article is by guest author Jack Franklin. SitePoint guest posts aim to bring you engaging content from prominent writers and speakers of the Web community
In this article, I’ll discuss the approach I take when building and structuring large React applications. One of the best features of React is how it gets...
April 21, 2017While many aspects of building applications with React have been standardized to some degree, styling is one area where there are still a lot of competing options. Each has its pros can cons, and there is no clear best choice.
In this article, I will provide a condensed overview of the progression in web application st...
April 20, 2017Should I choose Angular, or React? Today’s bipolar landscape of JavaScript frameworks has left many of developers struggling to pick a side in this debate. Whether you’re a newcomer trying to figure out where to start, a freelancer picking a framework for your next project or an enterprise-grade architect p...
March 3, 2017How to Work with Forms in React is an excerpt from React Quickly, a hands-on book by Azat Mardan for anyone who wants to learn React.js fast.
This article covers how to capture text input and input via other form elements like input, textarea, and option. Working with them is paramount to web development, because they ...
January 5, 2017
This article was originally published on Stormpath. Thank you for supporting the partners who make SitePoint possible.
React (sometimes referred to as React.js) is an awesome way to build web UIs. The Stormpath React SDK extends React and React Router with routes and components that allow you to solve common user mana...
December 8, 2016Starting a new React project now days is not as simple as we’d like it to be. Instead of instantly diving into the code and bringing your application to life, you have to spend time configuring the right build tools to set up a local development environment, unit testing, and a production build. But there are pro...
February 18, 2016React and ES6 seems to be on everyone’s mind lately. Today I want to show you the ins and outs of React Props written with ES6.
In this video tutorial you’ll be learning about properties, defaults, and modules. Why? It will help you understand the basics about the property types your components can receive....
Recent Comments