Posts

Showing posts with the label web development

React.js + Python + MongoDB CRUD application example

Image
In this section, we will learn how to develop a  web application that is a basic User Management Application using MongoDB, React.js, Python, and Flask.  GitHub repository link is provided at the end of this tutorial. You can download the source code. We’re gonna build the application with the following components: After completing this tutorial what we will build? We will build a full-stack web application that is a basic User Management Application with CRUD features:     • Create User     • List User     • Update User     • Delete User     • View User Following is the screenshot of our application - -View all Users: -Add a User: -Update User: -View User We divided this tutorial into two parts.   PART 1 - Rest APIs Development using Python and Flask PART 2 - UI development using React.js     PART 1 - Rest APIs Development using Python and Flask These are APIs that Python Flask App will export:  GET all User's        :     /api/v1/users GET User by ID     :     /api/v1/users/{_id}