Posts for API

Afolayan
Afolayan wrote

Authenticating Laravel APIs Using Passport

Knowledge of authentication and security procedures are important in the day to day process of building and managing applications today. In this tutorial, we will learn how to add authentication to a Laravel API using Passport. APIs are known to authenticate users using tokens as they do not maintain session between requests. With the Laravel […]

February 16, 2020 in Laravel & Tutorials
Afolayan
Afolayan wrote

Building CRUD API using Restify Framework

A lot of countless options exist for building APIs with JavaScript frameworks these days, and each with their own advantages. This article will focus on explaining the steps to build an API with Create Read Update and Delete (CRUD) functions using the Restify Framework for Node.js. The project we’re going to be building would be […]

February 4, 2020 in Node & Tutorials
Afolayan
Afolayan wrote

Build a CRUD Application Using Laravel and React

One of the basic things for every developer is how to go about managing Create Read Update and Delete (CRUD) operations in an application. The app we’re going to be building is an Expense Management App with Laravel for the Backend API and React on the frontend. Read this article if you want to learn […]

February 3, 2020 in Laravel & React & Tutorials

Getting Started with React Context API

React Context was designed to provide a way in which data could be stored and accessed by various components. Why would you need this? This feature becomes important when props would have to be passed to deeply nested or numerous components within an application. In react applications, data is usually passed from parent to child […]

December 14, 2019 in React & Tutorials

How to consume RESTful APIs with axios

Knowing how to consume data from an API is very important as a front-end developer. In this article, we’ll discuss what an API is and how to consume data from it via http to give your web app superpowers. It is assumed that you have adequate knowledge of JavaScript and how NodeJs works. What is […]

November 18, 2019 in Javascript & Node & Tutorials