orion
Version, currently 3.0.0-alpha129 versions
- 4.0.0-beta5latestnot indexedNov 5, 2025
- 4.0.0-beta4not indexedNov 5, 2025
- 4.0.0-beta3not indexedNov 5, 2025
- 4.0.0-beta2not indexedNov 5, 2025
- 4.0.0-beta1not indexedNov 5, 2025
- 3.1.0Jul 16, 2021
- 3.0.5not indexedNov 5, 2025
- 3.0.4not indexedNov 5, 2025
- 3.0.2not indexedNov 5, 2025
- 3.0.1not indexedNov 5, 2025
- 3.0.0not indexedNov 5, 2025
- 3.0.0-alpha1not indexedNov 5, 2025
- 2.3.2not indexedNov 5, 2025
- 2.3.1not indexedNov 5, 2025
- 2.3.0not indexedNov 5, 2025
- 2.2.0not indexedNov 5, 2025
- 2.1.1not indexedNov 5, 2025
- 2.1.0not indexedNov 5, 2025
- 2.0.0not indexedNov 5, 2025
- 1.7.0not indexedNov 5, 2025
- 1.6.0not indexedNov 5, 2025
- 1.5.0not indexedNov 5, 2025
- 1.4.2not indexedNov 5, 2025
- 1.4.0not indexedNov 5, 2025
- 1.3.0not indexedNov 5, 2025
- 1.1.0not indexedNov 5, 2025
- 1.0.0not indexedNov 5, 2025
- 1.0.0-beta1not indexedNov 5, 2025
- 1.0.0-beta.1not indexedNov 5, 2025
github.com/obsidian/orion
A Crystal router
Nothing has been indexed for 3.0.0-alpha1 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:
orion:
github: obsidian/orion
version: ~> 3.0.0-alpha1Then run:
shards installshard.yml
No shard.yml has been indexed for 3.0.0-alpha1. 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.
Introduction
Orion is minimal, Omni-Conventional, declarative web framework inspired by the ruby-on-rails router and controller components. It provides, the routing, view, and controller framework of your application in a way that can be as simple or complex as you need it to fit your use case.
Simple Example
Orion out of the box is designed to be as simple as you want it to be. A few lines will get you a functioning web app. Orion also ships with helpful features such as view rendering and static content delivery.
require "orion/app"
root do
"Welcome Home"
end
get "/posts" do
"Many posts here!"
end
Flexible Routing
Orion is extemely flexible, it is inspiried by the rails routing and controller framework and therefore has support for scope, concerns, use HTTP::Handler, constraints and more! See the modules in Orion::DSL more more detail.
require "orion/app"
require "auth_handlers"
static "/", dir: "./assets"
scope "/api" do
use AuthHandlers::Token
end
use AuthHandlers::CookieSession
scope constraint: UnauthenticatedUser do
root do
render "views/home.slim"
end
get "/login", helper: login do
render "views/login.slim"
end
post "/login" do
if User.authenticate(params["email"], params["password"])
redirect to: root_path
else
flash[:error] = "Invalid login"
redirect to: login_path
end
end
scope constraint: AuthenticatedUser do
root do
render "views/dashboard.slim"
end
end
Installation
Add this to your application's shard.yml:
dependencies:
orion:
github: obsidian/orion
See also Getting Started.
Documentatation
View the docs at https://obsidian.github.io/orion. View the guides at https://github.com/obsidian/orion/wiki.
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
3.0.0-alpha1- Tagged
- Nov 5, 2025
- Commit
cb25d3247a17- Indexed
- not yet
Dependents
Repository
github.com/obsidian/orion
Metadata
- Created
- Aug 12, 2026
- Updated
- Sep 23, 2026
- Synced
- Sep 23, 2026
- Versions
- 29