Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vrishtrix/leon
ArangoDB ORM, Client and Driver for the Crystal Language.
https://github.com/vrishtrix/leon
arangodb crystal-language orm
Last synced: 29 days ago
JSON representation
ArangoDB ORM, Client and Driver for the Crystal Language.
- Host: GitHub
- URL: https://github.com/vrishtrix/leon
- Owner: vrishtrix
- License: mit
- Created: 2020-05-08T12:28:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-01T15:26:31.000Z (over 3 years ago)
- Last Synced: 2024-10-25T01:25:53.476Z (3 months ago)
- Topics: arangodb, crystal-language, orm
- Language: Crystal
- Homepage:
- Size: 51.8 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Leon
Leon is an open source ArangoDB Client driver and ORM for the Crystal Language.## Requirements
- Crystal Language 0.35.0
- ArangoDB 3.4 or Higher## Installation
```
dependencies:
leon:
github: ForetagInc/Leon
```## Usage
```ruby
require "leon"client = Leon::Client.new("http://localhost:8529", "root", "")
database = client.database("database")# Async (https://www.arangodb.com/docs/stable/http/async-results-management.html)
client.async = true
```