ipkn / crow

Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
BSD 3-Clause "New" or "Revised" License
7.47k stars 888 forks source link

Is it ready for production? #324

Open GildedHonour opened 5 years ago

GildedHonour commented 5 years ago

There're over 100 issues.

Is it ready for production for simple web apps?

Can it be used behind nginx with letsencrypt?

moneroexamples commented 5 years ago

No. It seems to be abandoned.

kingsamchen commented 5 years ago

It's been almost a year since the last commit on master, what a shame seeing crow being abandoned.

@moneroexamples may I ask if any alternatives that easy-to-use do you recommend?

moneroexamples commented 5 years ago

On one of my projects I use restbed https://github.com/corvusoft/restbed

There is also BeastHttp which is very new and seem promising https://github.com/0xdead4ead/BeastHttp . But haven't used it yet, but if I have new project starting I will definitely look into it.

And there is also this oone: https://nghttp2.org/documentation/libnghttp2_asio.html But haven't used it either.

kingsamchen commented 5 years ago

Wow, glad to see these awesome libraries. I was once trying to write a web application direcly based on boost.beast, but it turned out to much tedious; then I found crow and done what I need with it.

Anyway, I still hope there will be a flag library which would be accepted by most developers in the community. Wish that day would come.