API

How To Call Web APIs with the useEffect Hook in React — step-by-step Javascript tutorial on Progressive Robot

How To Call Web APIs with the useEffect Hook in React

In this tutorial, you’ll use the useEffect and useState React Hooks to fetch and display information in a sample application, using JSON server as a local API for testing purposes. You’ll load information when a component first mounts and save customer inputs with an API. You’ll also refresh data when a user makes a change and learn how to ignore API requests when a component unmounts.

Read more
How To Use Web APIs in Python 3 — step-by-step Python tutorial on Progressive Robot

How To Use Web APIs in Python 3

An API, or Application Program Interface, makes it easy for developers to integrate one app with another. They expose some of a program’s inner workings in a limited way. You can use APIs to get information from other programs, or to automate things you normally do in your…

Read more
How To Build a Photo Search App with React Using the Unsplash API — step-by-step Javascript tutorial on Progressive Robot

How To Build a Photo Search App with React Using the Unsplash API

This tutorial shows how to build a JavaScript search bar application with the React front-end library to query and display images using the Unsplash API. It covers styling the user interface with CSS, managing state with React Hooks like useState(), and using JSX to display the images to a webpage. At the end of this tutorial, you’ll have a working application that uses React Hooks to query the Unsplash API.

Read more
How To Set Up a GraphQL API Server in Node.js — step-by-step Javascript tutorial on Progressive Robot

How To Set Up a GraphQL API Server in Node.js

In this tutorial, you’ll make an Express API server in Node.js that serves up a GraphQL endpoint. You will also build a GraphQL schema based on the GraphQL type system, including operations such as queries and mutations, as well as resolver functions to generate responses for any requests. You will also use the GraphiQL integrated development environment (IDE) to explore and debug your schema and query the GraphQL API from a client.

Read more
Building Custom APIs With Strapi — step-by-step CMS tutorial on Progressive Robot

Building Custom APIs With Strapi

Let’s build a custom API – quickly! Using Strapi, a Node CMS, we can create our own APIs in very little time without having to write Node code, from a clean dashboard. Get up and running with a REST API or GraphQL API.

Read more
CHAT