https://github.com/go-advanced-admin/web-echo
Echo web framework integration for the advanced Go admin panel framework.
https://github.com/go-advanced-admin/web-echo
admin admin-dashboard admin-framework admin-live-panel admin-panel administation echo echo-admin echo-framework go go-admin-framework go-admin-library go-advanced-admin go-advanced-admin-integration go-advanced-admin-web-integration goadmin goadvancedadmin golang
Last synced: 7 months ago
JSON representation
Echo web framework integration for the advanced Go admin panel framework.
- Host: GitHub
- URL: https://github.com/go-advanced-admin/web-echo
- Owner: go-advanced-admin
- License: apache-2.0
- Created: 2024-10-05T20:48:50.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-10T19:08:36.000Z (9 months ago)
- Last Synced: 2024-10-25T03:40:11.952Z (8 months ago)
- Topics: admin, admin-dashboard, admin-framework, admin-live-panel, admin-panel, administation, echo, echo-admin, echo-framework, go, go-admin-framework, go-admin-library, go-advanced-admin, go-advanced-admin-integration, go-advanced-admin-web-integration, goadmin, goadvancedadmin, golang
- Language: Go
- Homepage: https://goadmin.dev/echo-integration.html
- Size: 42 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/funding.yml
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Go Advanced Admin - Echo Integration
[Echo](https://echo.labstack.com/) framework integration for the Go Advanced Admin Panel.
[](https://goreportcard.com/report/github.com/go-advanced-admin/web-echo)
[](https://github.com/go-advanced-admin/web-echo/actions/workflows/tests.yml)
[](LICENSE)
[](https://pkg.go.dev/github.com/go-advanced-admin/web-echo?tab=doc)This package provides integration with the Echo web framework for the Go Advanced Admin Panel, enabling you to use Echo as your web framework.
## Installation
Add the module to your project by running:
```sh
go get github.com/go-advanced-admin/echo-integration
```## Documentation
For detailed documentation on how to use the Echo integration, please visit the [official documentation website](https://goadmin.dev/Echo.html).
## Quick Start
```go
import (
"github.com/go-advanced-admin/admin"
"github.com/go-advanced-admin/echo-integration"
"github.com/labstack/echo/v4"
)func main() {
// Initialize Echo
e := echo.New()// Initialize the web integrator
webIntegrator := adminecho.NewIntegrator(e.Group("/admin"))// Use webIntegrator when initializing the admin panel
}
```For more detailed examples and configuration options, please refer to the [Echo Integration Guide](https://goadmin.dev/Echo.html).
## Contributing
Contributions are always welcome! Please refer to the [Contributing Guidelines](https://github.com/go-advanced-admin/admin/blob/main/CONTRIBUTING.md) in the main repository.
## License
This project is licensed under the Apache 2.0 License - see the [LICENSE](LICENSE) file for details.