Tag: React
-
5 ways to style React components in 2019
Posted on December 2, 2018, Level beginner Resource Length medium
An article by Jonathan Saring about styling of building blocks of user interfaces in React in 2019. As visual elements, styling them is a big part of how application actually meets our users, and composes the way our brand and product looks and feels.
Tags react javascript web-development programming
-
React Native -- how to setup your first app
Posted on July 22, 2018, Level beginner Resource Length short
Aman Mittal's article about first steps with React Native. React Native is a framework for building mobile applications with JavaScript and leveraging Reactjs. It uses native UI components. In React Native, there is no DOM rather than Native Components which are provided by platforms such iOS and Android.
Tags web-development app-development react
-
Twitter Lite and high performance react progressive web apps at scale
Posted on May 4, 2018, Level intermediate Resource Length long
Paul Armstrong interesting article about a look into removing common and uncommon performance bottlenecks in one of the worlds largest React.js progressive web apps, Twitter Lite. Creating a fast web application involves many cycles of measuring where time is wasted, understanding why it's happening, and applying potential solutions.
Tags web-development app-development devops react
-
The Observer Pattern In Javascript as Implemented By Redux
Posted on August 13, 2017, Level intermediate Resource Length short
James Buczkowski post on hot topic of Observer pattern in JavaScript. The observer pattern, also referred to as the publish/subscribe pattern, is a design pattern where an object (called the subject or observable), will maintain a list of "dependents" called observers. Upon a state change, this subject will notify any of the observers automatically.
Tags software-architecture javascript react
-
How to better organize your React applications?
Posted on June 11, 2017, Level beginner Resource Length medium
Alexis Mangin deep dive on a good architecture for very large web applications in React. if you didn't start with a good architecture, it can become difficult to keep your code organized.
Tags programming javascript react