Hi all!
I am very interested in learning Crystal and helping the community grow,
Should I just recommend people to read the learn documentation: https://crystal-lang.org/reference/overview/ when starting out?
Tech question:
I also wanted to know if there was a specific way to send some string or bytes to the client in an http server without completely closing the response in the server?
For example in nodejs/express I can do response.send or response.write where as the latter is what I want to do, write data without doing a response.end() closing out the response connection.