gorm/README.md

42 lines
2.0 KiB
Markdown
Raw Normal View History

2013-10-25 12:24:29 +04:00
# GORM
2014-01-03 10:54:47 +04:00
The fantastic ORM library for Golang, aims to be developer friendly.
2013-10-25 12:24:29 +04:00
2018-01-31 13:16:20 +03:00
[![go report card](https://goreportcard.com/badge/github.com/jinzhu/gorm "go report card")](https://goreportcard.com/report/github.com/jinzhu/gorm)
2018-02-10 08:15:04 +03:00
[![wercker status](https://app.wercker.com/status/8596cace912c9947dd9c8542ecc8cb8b/s/master "wercker status")](https://app.wercker.com/project/byKey/8596cace912c9947dd9c8542ecc8cb8b)
2019-05-05 09:32:23 +03:00
[![codecov](https://codecov.io/gh/jinzhu/gorm/branch/master/graph/badge.svg)](https://codecov.io/gh/jinzhu/gorm)
2018-02-13 12:59:29 +03:00
[![Join the chat at https://gitter.im/jinzhu/gorm](https://img.shields.io/gitter/room/jinzhu/gorm.svg)](https://gitter.im/jinzhu/gorm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Open Collective Backer](https://opencollective.com/gorm/tiers/backer/badge.svg?label=backer&color=brightgreen "Open Collective Backer")](https://opencollective.com/gorm)
[![Open Collective Sponsor](https://opencollective.com/gorm/tiers/sponsor/badge.svg?label=sponsor&color=brightgreen "Open Collective Sponsor")](https://opencollective.com/gorm)
2019-05-05 11:23:52 +03:00
[![MIT license](https://img.shields.io/badge/license-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT)
2016-02-25 17:58:56 +03:00
[![GoDoc](https://godoc.org/github.com/jinzhu/gorm?status.svg)](https://godoc.org/github.com/jinzhu/gorm)
2013-10-28 06:09:44 +04:00
## Overview
2015-02-24 17:06:42 +03:00
* Full-Featured ORM (almost)
2016-03-07 16:18:48 +03:00
* Associations (Has One, Has Many, Belongs To, Many To Many, Polymorphism)
2018-02-16 19:33:52 +03:00
* Hooks (Before/After Create/Save/Update/Delete/Find)
2015-02-11 14:27:58 +03:00
* Preloading (eager loading)
* Transactions
2016-03-07 16:18:48 +03:00
* Composite Primary Key
* SQL Builder
* Auto Migrations
* Logger
* Extendable, write Plugins based on GORM callbacks
2013-11-07 08:12:25 +04:00
* Every feature comes with tests
* Developer Friendly
2013-10-28 06:09:44 +04:00
2016-02-29 17:06:15 +03:00
## Getting Started
2019-05-05 11:23:52 +03:00
* GORM Guides [https://gorm.io](https://gorm.io)
2016-02-29 17:06:15 +03:00
2018-02-13 12:59:29 +03:00
## Contributing
2016-02-29 17:06:15 +03:00
2019-05-05 11:23:52 +03:00
[You can help to deliver a better GORM, check out things you can do](https://gorm.io/contribute.html)
2015-11-16 05:59:24 +03:00
2013-11-12 03:13:58 +04:00
## License
2018-02-13 13:12:09 +03:00
© Jinzhu, 2013~time.Now
2018-02-13 12:59:29 +03:00
Released under the [MIT License](https://github.com/jinzhu/gorm/blob/master/License)