Web Development

How To Create a Google Chrome Extension?

Google Chrome extensions are programs installed in a browser and enhance its functionality. You can build one easily by using web technologies like HTML, CSS, and JavaScript. It is similar to creating a web application, but requires a manifest.json file which will be explained later. At a very basic level, a Chrome extension is just some HTML, …

How To Create a Google Chrome Extension? Read More »

Useful Chrome extensions for developers

If you’re a developer, you probably already have a list of Chrome extensions that you use on a regular basis. Extensions that make life easier, increase productivity, or perform a critical activity more efficiently than a dedicated tool. I made a list of some of the Chrome extensions I use to increase my productivity when …

Useful Chrome extensions for developers Read More »

What is Axios and how to use it for HTTP request

Axios is a promise-based HTTP client for the browser and Node.js. Axios makes it easy to send asynchronous HTTP requests to REST endpoints and perform CRUD operations. It can be used in plain JavaScript or with a library such as Vue or React. The HTTP protocol is the most common way for frontend programs to communicate with a server. Maybe you are familiar with Fetch API and XMLHttpRequest interface. …

What is Axios and how to use it for HTTP request Read More »

How to install next.js

To install Next.js, you need to have Node.js installed on your machine. Check the node version installed in your machine, to check run node -v in your terminal Installation The recommended installation of Next.js is to use npx create-next-app@latest command. This will install all the necessary files and set up everything. npx create-next-app@latest If you …

How to install next.js Read More »

Why Thunder Client extension is better than postman?

Thunder client is a useful extension of VSCode for checking and testing your API. It is a lightweight alternative to Postman. Rather than installing an application to test your API, we can just use an extension in VSCode that works similarly to Postman but is easier and less time-consuming. Features of Thunder Client All the …

Why Thunder Client extension is better than postman? Read More »

How to develop remote project with vscode using Remote – SSH extension

Prerequisites OpenSSH compatible SSH client Visual Studio Code Remote – SSH extension How to Setup Step 1 In Visual Studio Code, go to Extensions and search and install Remote – SSH extension. Step 2 Click the Open a Remote Window located in the bottom left corner Step 3 To add ssh connection, click “Connect to …

How to develop remote project with vscode using Remote – SSH extension Read More »