January 2019
Intermediate to advanced
246 pages
5h 23m
English
Ruby’s most explosive growth came from Rails, the outstanding web framework. As Crystal is a direct descendant of Ruby, it’s not surprising that developers have poured energy into Crystal web frameworks. If you read through the company testimonies, you’ll see that many of them use Kemal.
Crystal’s standard library has a module HTTP for basic web techniques such as static file handling, logging, error-handling, form data, websockets, and so on. It also contains a built-in web server, the class HTTP::Server. You can set that up in just a few lines of code, and see the foundations of a running web server:
| | require "http/server" ... |
Read now
Unlock full access