Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Articles by Raju Dandigam
4 articles
How to pass multiple props in a single event handler in ReactJS?
Passing multiple props in a single event handler in ReactJS can be useful for situations where more than one value needs to be worked on based on some user input. In this article, we will discuss three different ways to pass props in a single event handler in ReactJS. Here is a list of approaches: Using Arrow Functions Using bind() Method Using Event Object Using Arrow Functions To pass multiple props in a single event handler, we will use the most popular approach i.e. ...
Read MoreWhat is Docker Health Check?
Docker has changed the way we develop, package, and run applications by providing a means of packaging applications and their dependencies into lightweight containers. However, it is just as important to ensure that your containers are healthy and running as it is to get them deployed. This is where Docker Health Checks come in. Why Do We Need Docker Health Checks? When you are running your applications in Docker containers, just checking whether the container is ‘running’ is not enough. A container can be started, but may be stuck in an infinite loop, waiting for a connection, or experiencing ...
Read MoreHow to Dockerize a Golang Application?
Deploying a Golang application directly across different environments can be very complex and inconsistent. Other problems include managing dependencies, configuring for different operating systems, and environmental differences. Dockerizing the application makes it easier to guarantee that it will run correctly in any environment by packaging it and its dependencies into a container. Prerequisites Before you start, make sure you have the following installed: Golang (latest stable version) Docker (Docker Desktop or CLI) Basic knowledge of Golang and Docker Approaches to Dockerizing a Golang Application There ...
Read MoreHow to Dockerize an ExpressJS App?
To dockerize an ExpressJS app, we will be going through a detailed stepwise explanation in this article. Containerization is becoming an essential in the software development process to ensure that the software is developed and deployed in different environments and in a consistent manner. Docker is the most popular containerization tool that helps in packaging an app and its dependencies. Problem Statement This article focuses on the challenges of deploying Node.js applications due to dependency conflicts, environmental issues, and system-specific settings. In the traditional way of deployment, the runtime environment has to be set up manually which resulted in ...
Read More