J
J
Jedi2018-03-21 21:46:46
C++ / C#
Jedi, 2018-03-21 21:46:46

What are the web frameworks in C++ like Laravel in PHP?

Hello!
What are C++ frameworks?
For me, Laravel in PHP is a great framework, but what about C++?
Thank you!

Answer the question

In order to leave comments, you need to log in

3 answer(s)
K
Kirill Nesmeyanov, 2018-03-22
@PHPjedi

Of the similar capabilities in the world, only RoR can be singled out (but it's kind of ruby).
In C ++, "frameworks" are what goes in the "web languages" themselves out of the box, in the standard library of the language, which can be clearly seen from the links above from Stanislav Makarov .
You can also look in the direction of boost components, such as a logger or localization, but it is obvious that this is just a couple of components, and then, rather clumsily executed.

S
Stanislav Makarov, 2018-03-22
@Nipheris

https://github.com/boostorg/beast
https://github.com/Microsoft/cpprestsdk
https://github.com/ipkn/crow
siliconframework.org
pistache.io
https://github.com/lpre/Fastcgi -Container
https://github.com/loentar/ngrest
https://github.com/splunk/pion
cpp-netlib.org

V
Vitaly, 2018-03-22
@vt4a2h

There are some things, but I would not say that they are actively used in industrial development. And the reason is simple: C++ provides too much control, and is too complex, compared to the popular web languages ​​PHP, Python, Ruby, etc. In addition, it is also compiled, without reflection out of the box, with ABI problems, etc. Those. you have to overcome many difficulties and learn many things, with very dubious benefits for the web.
A reasonable use is, for example, to write some extensions on the server side, or extensions to the database. But not frameworks like RoR.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question