13 posts for "react"
Developing a turn based real-time battle game with Next.js and WebSockets
March 31, 2022Overview of a JavaScript Pokemon battle system re-make from the 90's Game Boy classic, some of the challenges faced during development, and how they were... tackled.
Next.js JWT authentication with React Hooks and Context API
January 31, 2020How to set up JWT authentication with Next.js using React Hooks and Context API for global state management and persistent authentication on page reload.
Run React + Node on one AWS EC2 instance with Nginx - Part 2
July 20, 2019The second of two posts about running a React and Node app on a single AWS EC2 instance, custom domain pointing with Nginx, and self hosted PostgreSQL database.
Run React + Node on one AWS EC2 instance with PM2 - Part 1
July 08, 2019The first of two posts about running a React and Node app on a single AWS EC2 instance with PM2. A cheaper and more flexible way than AWS Elastic Beanstalk.
Real-time notifications with WebSockets and Redis
June 30, 2019Delivering real-time in-app notifications with WebSockets and Redis using React and Redux
The fundamentals of building a web app with React and Typescript
March 11, 2019Quick tips and tricks of how to use Typescript both standalone and with React, and how I integrated it with my Listy web app.
Handling JWT authentication errors with React Apollo
August 11, 2018A short post showing my approach to handling authentication errors in React Apollo, specifically how to log people out due to token expiration.
Integrating Apollo GraphQL Client into a Redux application for local state - Part 3
March 04, 2018Introducing Apollo Client to an existing React Redux application, what that means with Redux dropped from Apollo, including local state management.
Integrating Apollo GraphQL into a Node server with JSON Web Tokens - Part 2
February 19, 2018Setting up Apollo's GraphQL server implementation, integrating with an existing Node architecture, and protecting the endpoint with JSON web tokens.
JSON Web Token authentication with Preact and Redux - Part 1
February 01, 2018Developing my Preact, Redux and Apollo GraphQL boilerplate with JSON Web Token authentication. A three-part post on client and server-side implementation.
Using JSON Web Tokens and refresh tokens with React Native, Redux and Node JS - Part 2
October 25, 2017Updated 18th March - Carrying on with how I incorporated JWT stateless authentication into React Native using Redux and Redux Thunk.
Using JSON Web Tokens and refresh tokens with React Native, Redux and Node JS - Part 1
July 18, 2017Updated 18th March - Going into detail with stateless authentication using JSON Web Tokens with React Native, Redux and Node.
React styling, CSS and components... the React way
March 30, 2017I have come at React from an Angular background, and found the styling options of React pretty deep compared to Angular.