CRUD
CRUD is an acronym that stands for create, read, update and delete in the context of database queries or HTTP verbs in case of REST APIs.
| CRUD | SQL | HTTP |
|-|-|-|
| Create | INSERT
| POST
|
| Read | SELECT
| GET
|
| Update | UPDATE
| PUT
to replace, PATCH
to modify |
| Delete | DELETE
| DELETE
|
Here are 356 public repositories matching this topic...
Generate CRUD gRPC backends from single YAML description.
-
Updated
Jun 16, 2022 - Go
APIBrew is Low code software to automate building CRUDs from yaml files
-
Updated
Oct 20, 2024 - Go
In this article, you'll learn how to implement JWT access and refresh tokens with gRPC using Golang, MongoDB-Go-driver, Gomail, Docker, and Docker-compose.
-
Updated
Mar 30, 2024 - Go
In this comprehensive guide, you will learn how to secure a Golang RESTful API with JSON Web Tokens and Email verification.
-
Updated
Feb 25, 2024 - Go
Some examples of using sponge to develop go projects.
-
Updated
Oct 21, 2024 - Go
Simple CRUD Application with Go, Gorilla/mux, MariaDB, Redis.
-
Updated
Feb 25, 2023 - Go
Golang REST API using MUX, GORM, and JWT for authentication
-
Updated
Jun 8, 2018 - Go
-
Updated
Oct 2, 2023 - Go
Repositório responsável pela demo relacionada ao projeto usando: Golang + Fiber + PostGreSQL + Azure
-
Updated
Nov 19, 2020 - Go
CRUD on golang
-
Updated
Dec 29, 2023 - Go