https://github.com/ksylvest/rhino
A Rack web server written in Ruby from scratch.
https://github.com/ksylvest/rhino
rack ruby webserver
Last synced: 2 months ago
JSON representation
A Rack web server written in Ruby from scratch.
- Host: GitHub
- URL: https://github.com/ksylvest/rhino
- Owner: ksylvest
- License: mit
- Created: 2016-09-29T07:21:51.000Z (about 9 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T08:20:24.000Z (11 months ago)
- Last Synced: 2025-07-17T05:08:50.187Z (3 months ago)
- Topics: rack, ruby, webserver
- Language: Ruby
- Homepage: https://ksylvest.com/posts/2016-10-04/building-a-rack-web-server-in-ruby
- Size: 85 KB
- Stars: 17
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rhino
Rhino is a simple Ruby server that can run rack apps. It is written as a fun experiment.
## Installation
```bash
gem install rhino
```## Usage
```bash
rhino
```## Advanced
```bash
rhino [options] [./config.ru]
-h, --help help
-v, --version version
-b, --bind bind (default: 0.0.0.0)
-p, --port port (default: 5000)
--backlog backlog (default: 64)
--reuseaddr reuseaddr (default: true)
```## Status
[](https://circleci.com/gh/ksylvest/rhino)
[](https://codeclimate.com/github/ksylvest/rhino/maintainability)
[](https://codeclimate.com/github/ksylvest/rhino/test_coverage)## Copyright
Copyright (c) 2015 - 2020 [Kevin Sylvestre](https://ksylvest.com). See LICENSE for details.