This is Akash Mittal, an overall computer scientist. He is in software development from more than 10 years and worked on technologies like ReactJS, React Native, Php, JS, Golang, Java, Android etc. Being a die hard animal lover is the only trait, he is proud of.
Generally when we create a react website we use create-react-app utility. We create the whole project using NodeJS. But it’s possible to use reactjs framework without nodejs. All we need…
Openssl has removed support from insecure protocols. But some of the packages in nodejs are still using them. Due to this they are throwing 0308010C:digital envelope routines::unsupported error. In this…
When I was learning Kubernetes and Dockers, I understood all the important concepts but still wasn’t able to deploy a project. There are many things in Kubernetes which works together…
MacOS Xcode is updated and it requires you to accept this change. If you don’t do so, it will throw requires command line developer tools error every time you try…
If you have updated MacOS Monterey to version 12.5+ then you can’t use python in commands to refer your Python program. This is removed from Monterey 12.5+. In order to…
There are many reasons for docker to throw invalid reference format error. Invalid reference means that the variables, paths, shortcuts etc. are not pointing towards a valid resource. Docker throws…
Permission denied means you are not allowed to access a file. But why this happens? This is because a file has 3 access properties – read, write, and execute. And…
JavaScript throws error “Support for the experimental syntax ‘jsx’ isn’t currently enabled” when either babel is not configured properly or there is script tag in JS file. In this article…
VSCode throws error “clean your repository working tree before checkout” when you have unstaged changes and trying to push your code. In this article we will look at the ways…
JavaScript throws TypeError: something is not a function when you try to call a non-function entity with (). For example, if there is a variable x = 5 then if…
SyntaxError is raised by nearly all programming languages. The main cause is the issue with standard language construct. In this article we will discuss about the Unexpected token error of…
Git throws the fatal error that operation must be run in a work tree if you try to run a command outside the directory where git is absent. To understand…
Flutter has changed splashScreenView from nonnull to nullable. The declaration has become – splashScreenView return nil when no splash screen is set but it was marked nonnull. Which is incorrect.…
In TypeScript version 4.8 getMutableClone has been deprecated. Else it is suggested that you use setCommentRange or setSourceMapRange, and avoid setting parent. Solution 1. Angular version should have compatible TypeScript version You need to…
If you are using ESLint 8.23.0 and WebStorm 2022.2.1 or PhpStorm 2022.2.1 then you might be encountering TypeError: this.libOptions.parse is not a function. It’s a bug in ESLint 8.23.0. The…
var, let & const are the three javascript keywords which are used to define the properties of a variable. Based on the restrictiveness on variable, we choose one of these…
Nodejs provides node:dns module which can be used to fetch DNS information of any website or host. In this article we will check out a code example to get ip…
In order to create SHA256 password hash using NodeJS, we can use node:crypto module. It has a createHmac() function which accepts the algorithm and secret key as parameters. Then we…
One day I was wondering what version of JavaScript is running in my Chrome browser? I tried searching in settings but couldn’t find any reference. Today I will show you…
In this article we will learn how to append to string and DOM elements in JavaScript. JavaScript is a unique language. It can do what no other language can do…