Posts for RESTful CRUD API

Building a RESTful Flask CRUD API

In this guide, we will learn how to build a Restful CRUD API with Flask. Most beginners prefer to use Flask because it is easy to learn and use as its syntax is more python friendly. Flask is more flexible, and it doesn’t enforce dependencies. It allows developers to structure their projects the way they […]

October 15, 2020 in Flask & Python
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
Deven
Deven wrote

Build a RESTful CRUD API Using Node, Express, and MongoDB

In this article, we’ll discuss how to create Restful CRUD API with Node.js, Express, and Mongoose to interact with a MongoDB instance to give your web app superpowers. Our API will include the following features: Handle CRUD operations Have an API URL (http://localhost:3000/tasks  User can update, edit, delete and add tasks directly in the database […]

December 13, 2019 in Node & Tutorials