Skip to content

Backend | CRUD | Go | Fiber | Google Cloud Storage | Google Cloud Run | MongoDB

Notifications You must be signed in to change notification settings

dp3why/mongofiber

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mongofiber

Go Fiber + MongoDB + Google Cloud Storage

Introduction

  • Leveraged MongoDB for data management, Google Cloud Storage for storing images

Endpoints

GET /books

Returns all books

GET /books/:id

Returns a single book

POST /books

Creates a new book

input:

{
    "title": "test book",
    "author": "me",
    "year": "2022"
}

PUT /books/:id

Updates a book

input:

{
    "title": "test book",
    "author": "me",
    "year": "2022"
}

DELETE /books/:id

Deletes a book

About

Backend | CRUD | Go | Fiber | Google Cloud Storage | Google Cloud Run | MongoDB

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published