Hosting-your-React-application-with-AWS

Hosting your React application with AWS

Hosting your React application with AWS Before we get started we need a couple of things set up on your computer Node 8.x environment installed on your computer This is the runtime environment for Javascript application servers. It follows with the node package manager (NPM). NPM is used to install node packages such as React,…

Building-a-Dynamic,-Controlled-Form-with-React (1)

Building a Dynamic, Controlled Form with React

Building a Dynamic, Controlled Form with React React makes building UI’s in JavaScript easy, but some things can still be a bit tricky to wrap your head around, things like dynamic forms. A dynamic form is one where the user is able to decide how many inputs there should be. For this code along, we’re…

Javascript vs Typescript

Javascript vs Typescript Before we compare javascript and typeScript, get into details about TypeScript, let’s just settle one thing. In terms of popularity, the efforts of Microsoft developers definitely paid off. According to the latest State of Frontend 2020 report, TypeScript popularity couldn’t be doing better. Not only do frontend developers believe that JavaScript will…

Using Life-Cycle Methods with React Hooks

life-cycle methods into functional components and hooks. If you started using React with the class components and are not comfortable with this transformation, this tutorial is just for you. For sake of organization, here are the topics I will be going over. Life-cycle Methods Life-cycle methods might look a little bit trickier compared to what…

React vs Angular

React vs Angular We will be comparing two most popular frameworks for web development in 2020 and we take following aspects to conclude which one is better : ● How mature is it and who’s behind it? What kind of features does it have? ● What architecture, development paradigms, and patterns does it employ? ●…

Unity-Integration-in-React-Native (1)

Unity Integration in React Native

Unity Integration in React Native With varying needs, React Native implementations growing leaps and bounds, it is very important integrate cross platforms Can we integrate a Unity Project in to a React Native project? Yes, We can integrate Unity in to React using Native Components for both iOS and Android. So, that we can use…

React-Redux (2)

React Redux

React Redux Redux is a predictable state container for JavaScript apps. It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. … You can use Redux together with React, or with any other view library. Advantages Of Redux: Following are some of the major…

React-Hooks (1)

React Hooks

React Hooks What is a Hook? Hooks are a new inclusion in the React 16.8. Hooks allow us to utilize the react features without the help of the class. Hooks give API to the React Principles like state, props, refs, etc. Hooks can also blend the principles of react. Need for Hooks When you need…