Programming

auth flow flutter

Simple authentication flow in flutter using shared preferences

Overview Starting a project without proper planning can quickly become overwhelming. To that end, developing a good authentication flow is equally important. In this guide, we’ll create a user authentication flow in flutter application with the help of a shared preferences library. Although there are many guides available and explains the same topic, my intention …

Simple authentication flow in flutter using shared preferences Read More »

react native push notifications

React native push notifications using react native firebase

Overview Push notifications are undoubtedly one of the vital parts of any mobile applications. They provide greater attention and improves overall interaction. Here in this post, we are going to implement the react-native push notifications in a react-native project. We’ll use the technologies like react native firebase, firebase cloud messaging and node JS. Being a …

React native push notifications using react native firebase Read More »

learn graphql

GraphQL: An opensource querying language for APIs

Software development has evolved as never like before. Technologies and tools are changing rapidly and one must leverage the tools to overcome the limitations of existing ones. In this blog, we are going to discuss GraphQL an API querying language that overcomes the limitations of standard REST API. Before we begin let’s understand what is …

GraphQL: An opensource querying language for APIs Read More »

react + express

Build and Deploy a React front end app using an Express backend

Introduction Here in this guide, we’ll discuss integrating React frontend with Express backend and to deploy on an apache server. React ReactJS is one of the most developer-friendly frameworks since when it released in 2013. It’s versatile and easy to master and learning it will give you an advantage over any other front end frameworks …

Build and Deploy a React front end app using an Express backend Read More »

how to use react hooks

How to use React hooks in functional components

React hooks are new addition to react 16.8. Hooks help developers to use state and life cycle methods without writing a class. Hooks do not work inside class components instead, It helps us to use the class features without actually writing a class component. Here in this guide, we’ll discuss adopting react hooks to write …

How to use React hooks in functional components Read More »

8 ways to define a function in JavaScript

Overview Functions are one of the most important aspects of programming. A function is an object which takes inputs as arguments and calculates a value with some statements. Here In this guide, we’ll talk about the number of ways to define a function in JavaScript 1. Function declaration A function declaration is the most common …

8 ways to define a function in JavaScript Read More »

bare or managed worflow expo

Expo managed workflow vs Bare workflow – React native

React native is an excellent framework to develop cross-platform mobile applications using JavaScript and XML. While creating react native applications developers usually come across this confusion to choose expo managed workflow or bare react native project. Here in this guide, I’ll explain to you the basic difference between a managed workflow and bare workflow. Expo …

Expo managed workflow vs Bare workflow – React native Read More »