Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marioidival/crud-mongodb
Create a simple Go app to save contacts on Mongodb
https://github.com/marioidival/crud-mongodb
api golang mongodb twitch
Last synced: about 2 months ago
JSON representation
Create a simple Go app to save contacts on Mongodb
- Host: GitHub
- URL: https://github.com/marioidival/crud-mongodb
- Owner: marioidival
- License: mit
- Created: 2018-09-21T22:32:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-23T17:11:31.000Z (about 6 years ago)
- Last Synced: 2024-06-20T10:15:09.940Z (6 months ago)
- Topics: api, golang, mongodb, twitch
- Language: Go
- Size: 207 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
- License: LICENSE
Awesome Lists containing this project
README
# Create a simple CRUD with MongoDB. [![Build Status](https://travis-ci.org/marioidival/crud-mongodb.svg?branch=master)](https://travis-ci.org/marioidival/crud-mongodb) [![Maintainability](https://api.codeclimate.com/v1/badges/2dcf8095394780cb786f/maintainability)](https://codeclimate.com/github/marioidival/crud-mongodb/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/2dcf8095394780cb786f/test_coverage)](https://codeclimate.com/github/marioidival/crud-mongodb/test_coverage)
Create a contacts app with Golang and MongoDB.
## ENDPOINTS
### GET /contacts/
Return a list of all contacts### GET /contacts/{id}/
Return a specific contact### POST /contacts/
Create a contact### PUT /contacts/{id}/
Update a contact### DELETE /contacts/{id}/
Remove a contact