Popularity
1.4
Growing
Activity
0.0
Stable
0
2
1
Programming language: Crystal
Tags:
Framework Components
kemal-monetdb alternatives and similar shards
Based on the "Framework Components" category.
Alternatively, view kemal-monetdb alternatives based on common mentions on social networks and blogs.
-
shrine.cr
File Attachment toolkit for Crystal applications. Heavily inspired by Shrine for Ruby. -
Exception Page
An exceptional exception page for Crystal web libraries and frameworks -
praetorian
A minimalist Crystal authorization system inspired by https://github.com/varvet/pundit. -
motion.cr
Motion is a framework for building reactive, real-time frontend UI components in your Amber application using pure Crystal that are reusable, testable & encapsulated. -
kemal-auth-token
Kemal middleware to authentication via HTTP header token using JWT -
device_detector
Crystal shard for device detection by User-Agent string -
mochi
Mochi is a authentication shard inspired by devise. Mochi is designed for the Amber framework with support for both Granite & Jennifer ORM's. -
mime-types.cr
MIME Types for Crystal :: A port of the Ruby MIME::Types library -
Athena Event Dispatcher
A Mediator and Observer pattern event library -
request_id
Middleware for generates / pick up a unique request ID for Crystal servers. -
Athena Negotiation
Framework agnostic content negotiation library
Collect and Analyze Billions of Data Points in Real Time
Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.
Promo
www.influxdata.com
Do you think we are missing an alternative of kemal-monetdb or a related project?
README
kemal-monetdb
Kemal Data connnection layer for MonetDB
This is currently experimental.
Installation
Add this to your application's shard.yml
:
dependencies:
kemal-monetdb:
github: puppetpies/kemal-monetdb
Usage
require "kemal"
require "kemal-monetdb"
CONN_OPTS = {
"host" => "127.0.0.1",
"user" => "monetdb",
"password" => "monetdb",
"port" => "50000",
"db" => "test"
}
monetdb_connect CONN_OPTS
# Make sure to yield `env`.
get "/" do |env|
env.content_type = "application/json"
users = conn.query("SELECT * FROM users")
# Release the connection after you are done with exec
release
# Renders the users as JSON
users
end
Development
TODO: Test / Implement the connection pool as in kemal-mysql
Contributing
- Fork it ( https://github.com/puppetpies/kemal-monetdb/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
- puppetpies Bri in The Sky - creator, maintainer