|
|
|
|
|
by rishav_sharan
2047 days ago
|
|
not production yet, but if you are looking to make simple apis, you can just go with the stdlib. Like golang, the Crystal http stdlib module is good enough for use in your project. Here is my half done repo where I have used it for a repo https://github.com/rishavs/noir, if you are looking for a reference. The major things you might struggle with; * Lack of IDE support. The DevEx is not that great compared to the other languages.
* Long compilation times. Specially if you add more libs to your project.
* http/2, postgres pipelining and async drivers. Not a big deal as the Crystal drivers are performant enough.
* lack of community packages. Most stuff will have to be done by hand. |
|