echo
고성능의 미니멀한 Go 웹 프레임워크
파일 탐색기
최종 버전 다운로드 (.zip)- checks.yml
- echo.yml
- FUNDING.yml
- ISSUE_TEMPLATE.md
- stale.yml
- README.md
- cert.pem
- key.pem
- README.md
- private.txt
- subfolder.md
- readme.md
- hello world.txt
- index.html
- test.txt
- private.txt
- index.html
- walle.png
- favicon.ico
- index.html
- test.json
- context.go
- context_external_test.go
- context_test.go
- reader.go
- reader_external_test.go
- reader_test.go
- private.txt
- subfolder.md
- readme.md
- index.html
- test.txt
- private.txt
- private.txt
- basic_auth.go
- basic_auth_test.go
- body_dump.go
- body_dump_test.go
- body_limit.go
- body_limit_test.go
- compress.go
- compress_test.go
- context_timeout.go
- context_timeout_test.go
- cors.go
- cors_test.go
- csrf.go
- csrf_test.go
- decompress.go
- decompress_test.go
- DEVELOPMENT.md
- extractor.go
- extractor_test.go
- key_auth.go
- key_auth_test.go
- method_override.go
- method_override_test.go
- middleware.go
- middleware_test.go
- proxy.go
- proxy_test.go
- randomstring_bench_test.go
- randomstring_concurrent_test.go
- rate_limiter.go
- rate_limiter_context_test.go
- rate_limiter_test.go
- recover.go
- recover_test.go
- redirect.go
- redirect_test.go
- request_id.go
- request_id_test.go
- request_logger.go
- request_logger_test.go
- rewrite.go
- rewrite_test.go
- secure.go
- secure_test.go
- slash.go
- slash_test.go
- static.go
- static_other.go
- static_percent_test.go
- static_test.go
- util.go
- util_test.go
- .editorconfig
- .gitattributes
- .gitignore
- .golangci.yaml
- API_CHANGES_V5.md
- bind.go
- bind_cache_test.go
- bind_field_error_test.go
- bind_test.go
- binder.go
- binder_error_response_test.go
- binder_external_test.go
- binder_generic.go
- binder_generic_test.go
- binder_test.go
- CHANGELOG.md
- CLAUDE.md
- codecov.yml
- context.go
- context_generic.go
- context_generic_test.go
- context_test.go
- dispatch_pool_test.go
- echo.go
- echo_test.go
- go.mod
- go.sum
- group.go
- group_method_handling_test.go
- group_test.go
- httperror.go
- httperror_external_test.go
- httperror_test.go
- ip.go
- ip_test.go
- json.go
- json_test.go
- LICENSE
- llms-full.txt
- llms.txt
- Makefile
- perf_bench_test.go
- query_fastpath_test.go
- README.md
- renderer.go
- renderer_test.go
- response.go
- response_test.go
- rfc9457.go
- rfc9457_test.go
- ROADMAP.md
- route.go
- route_test.go
- router.go
- router_concurrent.go
- router_concurrent_test.go
- router_test.go
- SECURITY.md
- server.go
- server_test.go
- static_encoded_separator_test.go
- version.go
- vhost.go
- vhost_test.go
# 설치 가이드
1. 코드 내려받기
git clone https://github.com/labstack/echo
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd echo
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. Go
보통 추천go build ./...
Go 프로그램을 컴파일해 실행 파일을 만듭니다.
go run .
따로 빌드하지 않고 바로 Go 프로그램을 실행합니다.
빌드가 에러 없이 끝나면 성공입니다. go run . 을 썼다면 터미널 출력을 확인하세요.
3. Make
보통사전 준비물
- Git GitHub에서 프로젝트 코드를 내려받으려면 필요합니다.
- Make Linux/macOS는 보통 기본 설치되어 있습니다. Windows는 별도 설치(예: MSYS2, WSL)가 필요합니다.
make
생성된 빌드 설정을 바탕으로 실제 컴파일을 진행해 실행 파일을 만듭니다.
에러 없이 끝나면 성공입니다. 생성된 실행 파일을 직접 실행해보세요.
// repository documentation
Was this content helpful?
(0 ratings)
