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
- Host: GitHub
- URL: https://github.com/oxdabit/hello-go
- Owner: OxDAbit
- Created: 2023-01-10T17:30:24.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-13T10:05:10.000Z (over 3 years ago)
- Last Synced: 2025-03-10T19:28:16.947Z (over 1 year ago)
- Language: Go
- Size: 3.67 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](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
```