{"id":20723297,"url":"https://github.com/lazypanda07/webframework","last_synced_at":"2026-04-02T17:54:40.749Z","repository":{"id":60977522,"uuid":"317760214","full_name":"LazyPanda07/WebFramework","owner":"LazyPanda07","description":"Web framework in C++ with different language APIs","archived":false,"fork":false,"pushed_at":"2025-03-23T13:46:37.000Z","size":26733,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-14T01:42:46.543Z","etag":null,"topics":["android","c","cpp","cpp-library","csharp","dart","flutter","framework","linux","python","python3","ubuntu","ubuntu2404","webframework","windows","windows-10","windows-11"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LazyPanda07.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-12-02T05:31:37.000Z","updated_at":"2024-12-30T00:06:51.000Z","dependencies_parsed_at":"2023-12-23T06:56:57.116Z","dependency_job_id":"216a72cd-dcd0-4d35-bb96-39b5a30084ce","html_url":"https://github.com/LazyPanda07/WebFramework","commit_stats":null,"previous_names":[],"tags_count":47,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LazyPanda07%2FWebFramework","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LazyPanda07%2FWebFramework/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LazyPanda07%2FWebFramework/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LazyPanda07%2FWebFramework/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LazyPanda07","download_url":"https://codeload.github.com/LazyPanda07/WebFramework/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250479301,"owners_count":21437340,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","c","cpp","cpp-library","csharp","dart","flutter","framework","linux","python","python3","ubuntu","ubuntu2404","webframework","windows","windows-10","windows-11"],"created_at":"2024-11-17T04:08:15.037Z","updated_at":"2026-04-02T17:54:40.692Z","avatar_url":"https://github.com/LazyPanda07.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WebFramework\r\n* A web server that follows the principles of ease of use and ease of development\r\n* Supports easy scalability\r\n* Allows parallel development(each team member can develop single isolated module)\r\n* Server functionality development available on ```C++ in Windows and Linux```\r\n* Server running API available on [C++ Windows and Linux](https://github.com/LazyPanda07/WebFramework/wiki/API#c), [C Windows and Linux](https://github.com/LazyPanda07/WebFramework/wiki/API#c-1), [Python](https://github.com/LazyPanda07/WebFramework/wiki/API#python), [C# .NET 8.0](https://github.com/LazyPanda07/WebFramework/wiki/API#c-net-80), [Flutter (Windows, Android)](https://github.com/LazyPanda07/WebFramework/wiki/API#flutter-windows-android)\r\n\r\n## Getting Started Build\r\nStart by cloning the repository\r\n```console\r\ngit clone https://github.com/LazyPanda07/WebFramework.git --recursive\r\n```\r\n\r\n## Build Requirements\r\n* CMake \u003e= 3.27.0\r\n* Compiler with C++20 support(MSVC, GCC, Clang)\r\n### Windows\r\n* Windows \u003e= 10\r\n### Linux\r\n* uuid-dev\r\n\r\n### Samples\r\n[Samples available](https://github.com/LazyPanda07/WebFramework/tree/master/samples) for Windows and Linux in C/C++, C# .NET 8.0, Python\r\n\r\n## Windows\r\n### Build\r\n1. Visual Studio\r\n* Create ```build``` directory\r\n* Run command from ```build``` directory\r\n```cmd\r\ncmake -DCMAKE_INSTALL_PREFIX=../WebFrameworkLibrary ..\r\n```\r\n* Open ```build\\WebFramework.sln```\r\n* Select ```Release``` configuration\r\n* In ```Solution Explorer``` build INSTALL project(expand ```CMakePredefinedTargets```)\r\n* ```WebFramework``` will be installed in ```WebFrameworkLibrary``` directory in project directory\r\n\r\n2. NMake\r\n* Create ```build``` directory\r\n* Run command from ```build``` directory\r\n```cmd\r\ncmake -DCMAKE_INSTALL_PREFIX=../WebFrameworkLibrary -G \"NMake Makefiles\" .. \u0026\u0026 nmake install\r\n```\r\n***NMake doesn't support multithreaded builds***\r\n* ```WebFramework``` will be installed in ```WebFrameworkLibrary``` directory in project directory\r\n\r\n## Linux\r\n### Build\r\n* Create ```build``` directory\r\n* Run command from ```build``` directory\r\n```bash\r\ncmake -DCMAKE_INSTALL_PREFIX=../WebFrameworkLibrary .. \u0026\u0026 make install -j $(nproc)\r\n```\r\n* ```WebFramework``` will be installed in ```WebFrameworkLibrary``` directory in project directory\r\n\r\n## Getting Started Application\r\n[Simple example of web application with ```WebFramework```](https://github.com/LazyPanda07/WebFramework/wiki/WebFramework-getting-started)\r\n\r\n## WebFramework Reference\r\n[Reference link](https://lazypanda07.github.io/WebFramework/)\r\n\r\n## SAST Tools\r\n\r\n[PVS-Studio](https://pvs-studio.com/en/pvs-studio/?utm_source=website\u0026utm_medium=github\u0026utm_campaign=open_source) - static analyzer for C, C++, C#, and Java code.\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazypanda07%2Fwebframework","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flazypanda07%2Fwebframework","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flazypanda07%2Fwebframework/lists"}