featured Image

How to uninstall npm modules in NodeJS

In this short article, we will learn how to uninstall npm packages locally or globally from our node projects. The npm packages are installed in two ways : locally and…

Read more
featured Image

How to make a placeholder for select box in HTML

In this article, we will see how to add a placeholder in the <select> tag for multiple dropdowns of HTML. To add a placeholder to <select> dropdown, we have to…

Read more
featured Image

Fixed Error – npm ERR! missing script: dev

In this article, we will learn how to fix the npm missing script dev error while running a Javascript application on our computer. Sometimes when we try to run the…

Read more
featured Image

Open Github repository in VS Code in Online

This article is on how to open any Github repo in VSCode in our browser online without any need of cloning the repository. This is something I found out recently…

Read more
featured Image

How to Create New Folder in Github Repository?

In this short tutorial, we will see how to create a new folder in the Github repository. Github is a code hosting platform that offers the distributed version control and…

Read more
featured Image

How to save username, email and password globally in Github?

In this article, we will see how to save GitHub username, email, and password globally on your computer. While working with github it is better to save your username and…

Read more
featured Image

How to check Git email address and username in terminal?

In this post, we will see how to check GitHub email address and username from the terminal. If you are signed in to your GitHub account on your computer but…

Read more
featured Image

How to add empty folder/directory in Git

In this article, we will see how we can add an empty folder in git that can be tracked by Github. The current design of git is such that it…

Read more
featured Image

What is insertAdjacentHTML() ? How to use it?

In this article, we will learn about the JavaScript insertAdjacentHTML() method along with some examples of how to use it. The insertAdjacentHTML() method parses any specific text into HTML and…

Read more