crecto
Version, currently 0.3.141 versions
- 0.14.0latestOct 10, 2025
- 0.13.0not indexedMar 5, 2026
- 0.12.1not indexedMar 5, 2026
- 0.12.0not indexedMar 5, 2026
- 0.11.3not indexedMar 5, 2026
- 0.11.2not indexedMar 5, 2026
- 0.11.1not indexedMar 5, 2026
- 0.11.0not indexedMar 5, 2026
- 0.10.1not indexedMar 5, 2026
- 0.10.0not indexedMar 5, 2026
- 0.9.0not indexedMar 5, 2026
- 0.8.6not indexedMar 5, 2026
- 0.8.5not indexedMar 5, 2026
- 0.8.4not indexedMar 5, 2026
- 0.8.3not indexedMar 5, 2026
- 0.8.2not indexedMar 5, 2026
- 0.8.1not indexedMar 5, 2026
- 0.8.0not indexedMar 5, 2026
- 0.7.1not indexedMar 5, 2026
- 0.7.0not indexedMar 5, 2026
- 0.6.2not indexedMar 5, 2026
- 0.6.1not indexedMar 5, 2026
- 0.6.0not indexedMar 5, 2026
- 0.5.4not indexedMar 5, 2026
- 0.5.3not indexedMar 5, 2026
- 0.5.2not indexedMar 5, 2026
- 0.5.1not indexedMar 5, 2026
- 0.5.0not indexedMar 5, 2026
- 0.4.4not indexedMar 5, 2026
- 0.4.3not indexedMar 5, 2026
- 0.4.2not indexedMar 5, 2026
- 0.4.1not indexedMar 5, 2026
- 0.4.0not indexedMar 5, 2026
- 0.3.5not indexedMar 5, 2026
- 0.3.4not indexedMar 5, 2026
- 0.3.3not indexedMar 5, 2026
- 0.3.2not indexedMar 5, 2026
- 0.3.1not indexedMar 5, 2026
- 0.3.0not indexedMar 5, 2026
- 0.2.0not indexedMar 5, 2026
- 0.1.0not indexedMar 5, 2026
github.com/Crecto/crecto
Database wrapper and ORM for Crystal, inspired by Ecto
352 stars
2 dependents
License: MIT
Nothing has been indexed for 0.3.1 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
crecto:
github: Crecto/crecto
version: ~> 0.3.1Then run:
shards installshard.yml
No shard.yml has been indexed for 0.3.1. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
# Crecto

[https://www.crecto.dev/](https://www.crecto.dev/)
[](https://travis-ci.org/Crecto/crecto) [](https://gitter.im/crecto/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Robust database wrapper for Crystal. Inspired by [Ecto](https://github.com/elixir-ecto/ecto) for Elixir language.
With built in query composer, associations, transactions, validations, constraints, and more.
Website with guides and examples - [https://www.crecto.dev/](https://www.crecto.dev/)
<!-- See api docs - <http://docs.crecto.dev> -->
## Example
```crystal
user = User.new
user.name = "Shakira"
changeset = Repo.insert(user)
changeset.errors.any?
inserted_user = changeset.instance
inserted_user.name = "Keanu"
changeset = Repo.update(user)
changeset.errors.any?
updated_user = changeset.instance
changeset = Repo.delete(updated_user)
```
## Usage and Guides
New website and API docs coming soon!
<!-- Visit [www.crecto.dev](https://www.crecto.dev) -->
### Benchmarks
- [VS raw crystal-pg](https://github.com/Crecto/crecto/wiki/Benchmarks)
## Development
### Testing
Specs are located in the `spec` directory. Since this is an ORM, running specs requires a database connection.
#### Quick Start (SQLite)
The project comes pre-configured with SQLite support. Simply run:
```bash
crystal spec
```
This will create a local SQLite database (`./crecto_test.db`) and run all 223 tests.
#### Testing with Other Databases
To test with PostgreSQL or MySQL:
1. Copy the example configuration:
```bash
cp spec/repo.example.cr spec/repo.cr
```
2. Edit `spec/repo.cr` to uncomment and configure your preferred database:
```crystal
# For PostgreSQL:
config do |conf|
conf.adapter = Crecto::Adapters::Postgres
conf.uri = "postgres://localhost/crecto_test"
end
# For MySQL:
config do |conf|
conf.adapter = Crecto::Adapters::MySQL
conf.uri = "mysql://localhost/crecto_test"
end
```
3. Run the tests:
```bash
crystal spec
```
#### Testing with Docker
To test all three supported database types using Docker:
```bash
docker-compose up
```
This will start PostgreSQL and MySQL containers and run the test suite against all database adapters.
#### Database Setup
The database must exist prior to testing. Migrations for each database type are available in `spec/migrations/`.
When contributing, please test against all supported databases before submitting a pull request.
## Contributing
1. Fork it ( [https://github.com/Crecto/crecto/fork](https://github.com/Crecto/crecto/fork) )
2. Create your feature branch (git checkout -b my-new-feature)
3. Commit your changes (git commit -am 'Add some feature')
4. Push to the branch (git push origin my-new-feature)
5. Create a new Pull Request
### Development Notes
When developing against crecto, the database must exist prior to
testing. There are migrations for each database type in `spec/migrations`,
and references on how to migrate then in the `.travis.yml` file.
Create a new file `spec/repo.cr` and create a module name `Repo` to use for testing.
There are example repos for each database type in the spec folder: `travis_pg_repo.cr`,
`travis_mysql_repo.cr`, and `travis_sqlite_repo.cr`
When submitting a pull request, please test against all 3 databases.
## Thanks / Inspiration
- [Ecto](https://github.com/elixir-ecto/ecto)
- [AciveRecord](https://github.com/rails/rails/tree/master/activerecord)
- [active_record.cr](https://github.com/waterlink/active_record.cr)
- [crystal-api-backend](https://github.com/dantebronto/crystal-api-backend)
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.3.1- Tagged
- Mar 5, 2026
- Commit
9183b22097a5- Indexed
- not yet
Dependents
Repository
github.com/Crecto/crecto
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 12, 2026
- Synced
- Aug 12, 2026
- Versions
- 41