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

https://github.com/oxdabit/hello-go

Golang tutorial repository
https://github.com/oxdabit/hello-go

Last synced: about 2 months ago
JSON representation

Golang tutorial repository

Awesome Lists containing this project

README

          

[![Twitter](https://img.shields.io/twitter/follow/0xDA_bit.svg?style=social)](https://twitter.com/0xDA_bit)

# Hello-Golang
## Índice de proyectos
1. [CRUD API]()

- Crear y acceder a la carpeta del proyecto
```
mkdir crud-api
cd crud-api
```
- Instalamos el paquete **gorilla mux**
```
go install github.com/gorilla/mux@latest
```
- Creamos las dependencias al módulo para poder compilar el código
```
go mod tidy
```
- Compilamos el código
```
go build
```
- Ejecutamos el código
```
./crud-api
```

## DEV tips
- Instalación de GO en Mac OS X
```
brew install golang
```