silver

Version, currently master branch1 version
  • master branchlatestJan 12, 2026

github.com/navid-m/silver

Gods web framework

2 stars
0 dependents
License: GPL-3.0

Installation

# Add this to your shard.yml
dependencies:
  silver:
    github: navid-m/silver
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
no constraint declared
Target
  • example_app from src/ex.cr

Dependencies

This version declares no dependencies.

README

Silver

Example usage

require "silver"

app = Silver::App.new

app.html(Silver::Method::GET, "/") do |ctx|
    "<h1>Hello from Silver Web Framework</h1>"
end

app.json(Silver::Method::GET, "/json") do |ctx|
    %({"message": "hello world"})
end

app.run(8082)