Jherico Cocosa

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 SSH login without typing your password.

Secure Shell is a network protocol that is encrypted and stands for Secure Shell. Its goal is to provide a secure connection between the client and the server, and it accomplishes this by employing a variety of authentication methods. There is a password authentication system and a key authentication system, to name a couple of …

How to SSH login without typing your password. 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 »

How to use mongodb in Ubuntu 20.04

MongoDB is a document-based non-relational database management system. It’s also called an object-based system. It offers faster query processing but with an increased load and system requirements. In order to get started with Mongodb, you need to install Mongodb to your computer. To install the mongodb, you need to run this command. sudo apt updatesudo apt upgradesudo apt install mongodb …

How to use mongodb in Ubuntu 20.04 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 »