wfrest
v0.9.8
中文版入口
快速、高效⌛️、而且最简单?基于C++ Workflow的 C++ 异步微型 Web 框架。
C++ Workflow是一个轻量级的 C++ 并行计算和异步网络引擎。
如果您需要性能和良好的生产力,您一定会喜欢wfrest 。
想了解更多信息,可以先看讨论:
https://github.com/wfrest/wfrest/discussions
提示:由于在 g++ 4.9 及之前的版本中,lambda 无法捕获可变参数模板,因此我们要求您将 g++ 版本升级到 5.0 及以上版本。
如果你使用的是 ubuntu 20.04,你可以通过命令安装它们:
apt-get install build-essential cmake zlib1g-dev libssl-dev libgtest-dev -y
更多详情,您可以查看这里:需求详情
git clone --recursive https://github.com/wfrest/wfrest
cd wfrest
make
sudo make install
对于测试:
make check
例如 :
make example
如果想使用xmake构建wfrest,可以查看xmake构建文档
使用dockerfile,Dockerfile位于根源代码存储库的/docker
子目录中。
docker build -t wfrest ./docker/ubuntu/
如果您使用podman
,您也可以构建它。并在ubuntu 20.04下测试
podman build -t wfrest ./docker/ubuntu/
或者你可以从 DockerHub 拉取
docker pull wfrest/wfrest
# include " wfrest/HttpServer.h "
using namespace wfrest ;
int main ()
{
HttpServer svr;
// curl -v http://ip:port/hello
svr. GET ( " /hello " , []( const HttpReq *req, HttpResp *resp)
{
resp-> String ( " world n " );
});
// curl -v http://ip:port/data
svr. GET ( " /data " , []( const HttpReq *req, HttpResp *resp)
{
std::string str = " Hello world " ;
resp-> String ( std::move (str));
});
// curl -v http://ip:port/post -d 'post hello world'
svr. POST ( " /post " , []( const HttpReq *req, HttpResp *resp)
{
// reference, no copy here
std::string& body = req-> body ();
fprintf (stderr, " post data : %s n " , body. c_str ());
});
if (svr. start ( 8888 ) == 0 )
{
getchar ();
svr. stop ();
} else
{
fprintf (stderr, " Cannot start server " );
exit ( 1 );
}
return 0 ;
}