HomeArchive by Category "Web Application"
Posted in VueJS, Web Application

Vue Js Instant Prototyping | Test your Vue components in no time

What is Prototyping? A prototype is an example that serves as a basis for future product like an application etc. Prototyping gives developers an opportunity to research new alternatives and test the existing design / functionality to confirm a product’s all over functionality prior to production. A prototype has many benefits, such as the developer […]

Posted in React, Web Application

Creating a Custom Middleware with Redux

You might have used redux with react, as it is a widespread practice. Many people use redux-saga or redux-thunk for async actions as middlewares. Redux allows you to create your custom middleware as per your requirement. A middleware can be added in between dispatch and reducers so that we can alter the actions or can dispatch other actions (for async actions). This is […]

Posted in General, Web Application

Javascript Variable Scope and Lifecycle

Variables are fundamental building blocks of any programming language. For better understanding any programming language we first have to understand variables. In Javascript, we can define a variable using these three keyword var, let, const. These three keywords behave differently in a different scenario. In this blog, we will look into the lifecycle and scope […]

Posted in General, Web Application

How To Use Visual Studio Code for Remote Development using SSH

Introduction Visual Studio Code is by far one of the best IDE for developers due to its large numbers of plugins, cross-platform, etc. We will be mainly focusing on Remote – SSH plugin for Visual Studio Code that will help us to connect to a remote server/system for application development using our local workstation cool!

Posted in React, Web Application

Learn How To Work On The React Portals

What is a Portal anyway? Well, as quoted in the google dictionary, its “a doorway, gate, or other entrance.” React v16.0 brought a similar concept of Portal that provides a way to transport a piece of UI into some other locations on to the DOM Tree while preserving its position in the React hierarchy, allowing it to maintain the properties […]

Posted in VueJS, Web Application

Vue 3 Composition API- What You Should Know

Overview Vuejs composition API is a uniquely designed progressive library that is built on top of JavaScript. This powerful library makes coding easier as it is specially configured to make codes shorter, organised, more readable, approachable etc. For people who have used this powerful tool, you’ll agree that it works pretty well especially looking at […]