Tag: restapi

How to Create Rest API in Spring Boot and Perform CRUD Operations with MySQL Database?

Reading Time: 8 minutes In this blog, we will cover: What are CRUD Operations? What is Spring Boot? What is MySQL Database? What is REST API Hands-On Conclusion What are CRUD Operations? CRUD represents Create, Read/Retrieve, Update, and Delete – fundamental actions on persistent storage, aligned with HTTP methods used in web development and database management: – POST: Establishes […]

Use SurrealDB to Persist Data with Rocket REST API

Reading Time: 8 minutes Databases are essential in web development for organizing data in various forms and shapes (both structured and unstructured). Their ultimate goal is for the stored data to be easily retrievable, updated, queried, and generally administered via a graphical user interface (GUI), dashboard, or even command line interface (CLI). We can use database management systems to […]

How to Manage State in a React Application Using Redux?

Reading Time: 6 minutes The rise of JavaScript frameworks such as React opened a new possibility in the world of Single Page Applications (SPAs). It became a lot easier to develop reusable components and create robust applications with JavaScript. However, as the applications grew, there arose a complexity – state management. That’s why we’ll discuss about how to Manage […]

How to Create a REST API with Rust Rocket Framework and Diesel Middleware with PostgreSQL Database?

Reading Time: 8 minutes For many years, C and C++ have been the main low-level programming languages. C and C++ require manual deallocation of memory to prevent memory leaks which are the major cause of security breaches in Software. Rust comes in to offer memory safety and at the same time speed of execution that matches that of C. […]

Back To Top