Blog
Mobile and web development articles and tutorials
- How to make strongly-typed React components
TypeScript helps developers to improve their productivity and prevent them from producing bugs.
Published on Mar 10, 2021 · 2 min read
- Basic overview on JavaScript Promise
A promise represents a value that is unknown now that may become known in the future, in other words an asynchronous value.
Published on Mar 10, 2021 · 2 min read
- React Native over-the-air app update with CodePush
CodePush is a tool developed by Microsoft which allows developers to quickly and easily manage and update React Native JavaScript bundles over the air.
Published on Nov 1, 2020 · 7 min read
- Building a simple login form in React Native using React Hook Form
A short step-by-step tutorial about how to build a simple login form in React Native using React Hook Form.
Published on Oct 6, 2020 · 9 min read
- Building floating logo bubbles on Stripe.com using React Hooks
In this tutorial, we are going to clone animating logo bubbles from Stripe.com using React Hooks.
Published on Aug 11, 2020 · 9 min read
- Building custom React Hooks to fetch data from Firebase Firestore
In this article, I want to share my experience of building custom React Hooks to fetch data from Firebase Firestore.
Published on Aug 5, 2020 · 5 min read
- Building a simple login form with Material UI and React Hook Form
In this article, I will give a short step-by-step tutorial about how to build a simple login form with Material UI and React Hook Form.
Published on Jul 23, 2020 · 7 min read
- Introduction to React Hooks
Hooks solve a wide variety of seemingly unconnected problems in React. Whether you're new to React or use it daily, you might recognise some of these problems.
Published on Jul 20, 2020 · 3 min read
- N+1 problem in GraphQL
The n+1 problem occurs because GraphQL executes a separate function – called resolver – for each field.
Published on Jul 17, 2020 · 2 min read
- GraphQL vs REST
GraphQL has been introduced as a revolutionary alternative to REST APIs. However, it has its pros and cons.
Published on Jul 16, 2020 · 3 min read
- Data fetching in Next.js 9.3+
There are two forms of pre-rendering: Static Generation and Server-side Rendering.
Published on Jul 15, 2020 · 6 min read
- When should we consider using third-party libraries?
The most crucial advantage of using third-party libraries is that it helps you to save time because you do not need to develop the functionality that the library gives.
Published on Jul 13, 2020 · 4 min read
- Step-by-step guidelines to implement Material UI in Next.js 2020
In this article, I want to share how to integrate Material UI in Next.js applications. We will build a very basic website using Material UI and Next.js.
Published on Jul 11, 2020 · 4 min read