fella
Version, currently 0.1.14 versions
- 0.3.0latestMay 4, 2026
- 0.2.0not indexedAug 9, 2026
- 0.1.1not indexedAug 9, 2026
- 0.1.0not indexedAug 9, 2026
github.com/GrottoPress/fella
An expressive HTTP log handler for Crystal
Nothing has been indexed for 0.1.1 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:
fella:
github: GrottoPress/fella
version: ~> 0.1.1Then run:
shards installshard.yml
No shard.yml has been indexed for 0.1.1. 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.
Fella
Fella is an expressive HTTP log handler for Crystal.
Installation
-
Add the dependency to your
shard.yml:dependencies: fella: github: GrottoPress/fella -
Run
shards update -
Require Fella:
# ... require "fella" # ...
Usage
Pass an instance of Fella::Handler to the web server:
# ...
require "http/server"
require "fella"
Fella.configure do |settings|
settings.request_id_header = "X-Request-ID"
# Uses substring matching, so `token` would match `access_token`
settings.filter_params = {"code", "password", "secret", "token"}
end
server = HTTP::Server.new([
Fella::Handler.new(log: Log.for(MyApp)),
# ...
])
server.bind_tcp("127.0.0.1", 8080)
server.listen
# ...
Development
Run tests with crystal spec.
Contributing
- Fork it
- Switch to the
masterbranch:git checkout master - Create your feature branch:
git checkout -b my-new-feature - Make your changes, updating changelog and documentation as appropriate.
- Commit your changes:
git commit - Push to the branch:
git push origin my-new-feature - Submit a new Pull Request against the
GrottoPress:masterbranch.
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.1.1- Tagged
- Aug 9, 2026
- Commit
1c281b25116e- Indexed
- not yet
Dependents
No indexed shard depends on this one yet.
Repository
github.com/GrottoPress/fella
Metadata
- Created
- Aug 17, 2026
- Updated
- Aug 17, 2026
- Synced
- Aug 17, 2026
- Versions
- 4