This particular article is my solution to try and mock a particular external method (using jest mock method) in the test case for a simple example app. Hope this article saves time for a lot of fellow devs in the community!
Category Archives: Web Development
React Portals: A better understanding.
So React Portals are basically React’s way of rendering your desired component into a target dom element anywhere in your react application.
Unit testing React functional component with jest and Enzyme
In my current company I am unit testing React components using jest and enzyme. While testing one of the functional components I came across a problem which needed a good solution/explanation and after some research on it I think I found the right way to do it and I wanted to share it with the community
React SSR with HMR: Quick setup guide
React SSR with HMR is a Quick setup guide to quickly bootstrap your react project with helpful features like Server-side rendering and Hot Module Reload.
Customize Alert Message: Show dynamic message in ionic 3/4 alert component
In one of my client’s projects, there was a situation where I wanted to update the alert message after a certain event but I was not aware of how to do it as it was not mentioned in the official ionic docs.
Password strength indicator: Develop component to show the user how strong is the password in React js
When the user enters the password, he/she should be able to see a bar which shows indicates the strength of the password entered in the field. Red color means it’s a weak password, Orange color means the password has medium strength and Green color means the password is strong enough!
React SSR : Get started with server side rendering react app ASAP
Introduction Hello everyone, This React SSR article is for those developers who love control. Every project they work on, they […]
Make your wordpress site a PWA in under 5 minutes
PWA , short form for “Progressive Web Apps” is a collective set of standards which can be implemented on to a website in order evolve your website to mock a native app and provide its features .
Convert Array of Arrays into Object with key-value pair in Javascript (Data from websocket)
So in one of my project, I faced a challenge in JavaScript which i would like to share with you […]
Open Documents in ionic 4 app : step by step Integration guide
So you have a remote url of a PDF file which is being shown in your page content. When the user clicks on it, by normal behaviour it will try to open up in an external browser or an in-app browser (if you have one integrated in your app). What we want is that, when user clicks on the link, it will download the file in background and open the file swiftly in the device’s default pdf reader.