Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goravel/goravel
A Golang framework for web artisans. Tribute to Laravel.
https://github.com/goravel/goravel
framework go golang laravel performance web
Last synced: 3 days ago
JSON representation
A Golang framework for web artisans. Tribute to Laravel.
- Host: GitHub
- URL: https://github.com/goravel/goravel
- Owner: goravel
- License: mit
- Created: 2021-10-26T11:44:00.000Z (about 3 years ago)
- Default Branch: v1.14.x
- Last Pushed: 2024-10-25T23:57:59.000Z (3 months ago)
- Last Synced: 2024-10-29T17:56:01.719Z (2 months ago)
- Topics: framework, go, golang, laravel, performance, web
- Language: Go
- Homepage: https://goravel.dev
- Size: 752 KB
- Stars: 2,802
- Watchers: 33
- Forks: 200
- Open Issues: 60
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - goravel/goravel - A Golang framework for web artisans. Tribute to Laravel. (Go)
- awesome-go - goravel - A Laravel-inspired web framework with ORM, authentication, queue, task scheduling, and more built-in features. Stars:`3.1K`. (Web Frameworks / Utility/Miscellaneous)
- awesome-go - Goravel - 受Laravel启发的Go Web框架,内置ORM、认证、队列等功能。 (Web 框架 / 爬虫工具)
- awesome-go - Goravel - 受Laravel启发的Go Web框架,内置ORM、认证、队列等功能。 (Web 框架 / 爬虫工具)
README
[![Doc](https://pkg.go.dev/badge/github.com/goravel/framework)](https://pkg.go.dev/github.com/goravel/framework)
[![Go](https://img.shields.io/github/go-mod/go-version/goravel/framework)](https://go.dev/)
[![Release](https://img.shields.io/github/release/goravel/framework.svg)](https://github.com/goravel/framework/releases)
[![Test](https://github.com/goravel/framework/actions/workflows/test.yml/badge.svg)](https://github.com/goravel/framework/actions)
[![Report Card](https://goreportcard.com/badge/github.com/goravel/framework)](https://goreportcard.com/report/github.com/goravel/framework)
[![Codecov](https://codecov.io/gh/goravel/framework/branch/master/graph/badge.svg)](https://codecov.io/gh/goravel/framework)
![License](https://img.shields.io/github/license/goravel/framework)English | [中文](./README_zh.md)
## About Goravel
Goravel is a web application framework with complete functions and good scalability. As a starting scaffolding to help
Gophers quickly build their own applications.The framework style is consistent with [Laravel](https://github.com/laravel/laravel), so that Php developers don't need to learn a new framework, and get to play around Golang! A tribute to Laravel!
Welcome to star, PR and issues!
## Getting started
```
// Generate APP_KEY
go run . artisan key:generate// Route
facades.Route().Get("/", userController.Show)// ORM
facades.Orm().Query().With("Author").First(&user)// Task Scheduling
facades.Schedule().Command("send:emails name").EveryMinute()// Log
facades.Log().Debug(message)// Cache
value := facades.Cache().Get("goravel", "default")// Queues
err := facades.Queue().Job(&jobs.Test{}, []queue.Arg{}).Dispatch()
```## Documentation
Online documentation [https://www.goravel.dev](https://www.goravel.dev)
Example [https://github.com/goravel/example](https://github.com/goravel/example)
> To optimize the documentation, please submit a PR to the documentation
> repository [https://github.com/goravel/docs](https://github.com/goravel/docs)## Main Function
| | | | | |
| ---------- | -------------- | -------------- | -------------- | -------------- |
| [Config](https://www.goravel.dev/getting-started/configuration.html) | [Http](https://www.goravel.dev/the-basics/routing.html) | [Authentication](https://www.goravel.dev/security/authentication.html) | [Authorization](https://www.goravel.dev/security/authorization.html) | [Orm](https://www.goravel.dev/orm/getting-started.html) |
| [Migrate](https://www.goravel.dev/orm/migrations.html) | [Logger](https://www.goravel.dev/the-basics/logging.html) | [Cache](https://www.goravel.dev/digging-deeper/cache.html) | [Grpc](https://www.goravel.dev/the-basics/grpc.html) | [Artisan Console](https://www.goravel.dev/digging-deeper/artisan-console.html) |
| [Task Scheduling](https://www.goravel.dev/digging-deeper/task-scheduling.html) | [Queue](https://www.goravel.dev/digging-deeper/queues.html) | [Event](https://www.goravel.dev/digging-deeper/event.html) | [FileStorage](https://www.goravel.dev/digging-deeper/filesystem.html) | [Mail](https://www.goravel.dev/digging-deeper/mail.html) |
| [Validation](https://www.goravel.dev/the-basics/validation.html) | [Mock](https://www.goravel.dev/testing/mock.html) | [Hash](https://www.goravel.dev/security/hashing.html) | [Crypt](https://www.goravel.dev/security/encryption.html) | [Carbon](https://www.goravel.dev/digging-deeper/helpers.html) |
| [Package Development](https://www.goravel.dev/digging-deeper/package-development.html) | [Testing](https://www.goravel.dev/testing/getting-started.html) | [Localization](https://www.goravel.dev/digging-deeper/localization.html) | [Session](https://www.goravel.dev/the-basics/session.html) | |## Roadmap
[For Detail](https://github.com/goravel/goravel/issues?q=is%3Aissue+is%3Aopen)
## Excellent Extend Packages
[For Detail](https://www.goravel.dev/prologue/packages.html)
## Contributors
This project exists thanks to all the people who contribute, to participate in the contribution, please see [Contribution Guide](https://www.goravel.dev/prologue/contributions.html).
## Sponsor
Better development of the project is inseparable from your support, reward us by [Open Collective](https://opencollective.com/goravel).
## Group
Welcome more discussion in Discord.
[https://discord.gg/cFc5csczzS](https://discord.gg/cFc5csczzS)
## License
The Goravel framework is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).