Humming-Bird is a simple, composable, and performant, all in one HTTP web-framework for Raku. Humming-Bird was inspired mainly by Opium, Sinatra, and Express, and tries to keep things relatively simple, allowing the user to pull in things like templating engines, and ORM's on their own terms.
Humming-Bird comes with what you need to quickly, and efficiently spin up REST API's, and with a few of the users favorite libraries, dynamic MVC style web-apps.
use v6;
use Humming-Bird::Core;
get('/', -> $request, $response {
$response.html('<h1>Hello World</h1>');
});
listen(8080);
# Navigate to localhost:8080!
use v6;
use Humming-Bird::Core;
my %users = Map.new('bob', '{ "name": "bob" }', 'joe', '{ "name": "joe" }');
get('/users/:user', -> $request, $response {
my $user = $request.param('user');
if %users{$user}:exists {
$response.json(%users{$user});
} else {
$response.status(404);
}
});
listen(8080);
use v6;
use Humming-Bird::Core;
use Humming-Bird::Middleware;
get('/logged', -> $request, $response {
$response.html('This request has been logged!');
}, [ &m_logger ]); # &m_logger is provided by Humming-Bird::Middleware
# Custom middleware
sub block-firefox($request, $response, &next) {
return $response.status(400) if $request.header('User-Agent').starts-with('Mozilla');
$response.status(200);
}
get('/no-firefox', -> $request, $response {
$response.html('You are not using Firefox!');
}, [ &m_logger, &block-firefox ]);
# Scoped middleware
# Both of these routes will now share the middleware specified in the last parameter of the group.
group([
&get.assuming('/', -> $request, $response {
$response.write('Index');
}),
&post.assuming('/users', -> $request, $response {
$response.write($request.body).status(204);
})
], [ &m_logger, &block-firefox ]);
More examples can be found in the examples directory.
- Humming-Bird should be easy to pickup, and simple for developers new to Raku and/or web development.
- Humming-Bird is not designed to be exposed to the internet directly. You should hide Humming-Bird behind a reverse-proxy like NGiNX or httpd.
- Simple and composable via middlewares.
- This project is in active development, things will break.
- You may run into bugs.
- Not production ready, yet.
Make sure you have zef installed.
zef -v install https://github.com/rawleyfowler/Humming-Bird.git
zef install Humming-Bird
All contributions are encouraged! I know the Raku community is amazing, so I hope to see some people get involved :D
Please make sure you squash your branch, and name it accordingly before it gets merged!
Humming-Bird is available under the MIT, you can view the license in the LICENSE
file
at the root of the project. For more information about the MIT, please click
here.