Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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