Author name: 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 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 »

Basic Linux commands

The Linux command is a piece of software that comes with the Linux operating system. Commands are used to perform all simple and complicated operations. The commands are executed on the Linux terminal which is a command-line interface similar to the command prompt in Windows. Linux Commands pwd – To know which directory you are

Basic Linux commands Read More »