API

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
How To Create an API Gateway Using Ambassador on Kubernetes — step-by-step Kubernetes tutorial on Progressive Robot

How To Create an API Gateway Using Ambassador on Kubernetes

Envoy is an open source service proxy designed for cloud-native applications. In Kubernetes, Ambassador can be used to install and manage Envoy configuration. Ambassador supports zero downtime configuration changes and integration with other features like authentication, service discovery, and services meshes.

Read more
How To Set Up a GraphQL Server in Node.js with Apollo Server and Sequelize — step-by-step Databases tutorial on Progressive Robot

How To Set Up a GraphQL Server in Node.js with Apollo Server and Sequelize

GraphQL is a specification and therefore language agnostic. When it comes GraphQL development with Node.js, there are various options available ranging from `graphql-js`, `express-graphql`, to `apollo-server`. In this tutorial, you will get a fully featured GraphQL server up and running in Node.js with Apollo Server. We will also see how to integrate a database with a GraphQL server using Sequelize.

Read more
CHAT