{"id":13423531,"url":"https://github.com/jorisvink/kore","last_synced_at":"2025-05-13T21:04:10.603Z","repository":{"id":8808210,"uuid":"10504702","full_name":"jorisvink/kore","owner":"jorisvink","description":"An easy to use, scalable and secure web application framework for writing web APIs in C or Python. || This is a read-only mirror, please see https://kore.io/mail and https://kore.io/source for information on how to contribute via the mailing lists.","archived":false,"fork":false,"pushed_at":"2025-04-01T18:32:52.000Z","size":5922,"stargazers_count":3756,"open_issues_count":0,"forks_count":319,"subscribers_count":178,"default_branch":"master","last_synced_at":"2025-04-28T12:12:13.100Z","etag":null,"topics":["c","framework","high-performance","http","kore","pgsql","tls","web-development"],"latest_commit_sha":null,"homepage":"https://kore.io","language":"C","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jorisvink.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":"2013-06-05T14:37:22.000Z","updated_at":"2025-04-19T14:43:49.000Z","dependencies_parsed_at":"2023-02-14T05:25:13.929Z","dependency_job_id":"a5ad06d3-0e8c-4a7b-993d-304aaeb9bbad","html_url":"https://github.com/jorisvink/kore","commit_stats":{"total_commits":1934,"total_committers":46,"mean_commits":42.04347826086956,"dds":0.07911065149948293,"last_synced_commit":"860e21aa50f7bf6e4bd222c08a7412f665792d85"},"previous_names":[],"tags_count":46,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorisvink%2Fkore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorisvink%2Fkore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorisvink%2Fkore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jorisvink%2Fkore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jorisvink","download_url":"https://codeload.github.com/jorisvink/kore/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251311332,"owners_count":21569009,"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":["c","framework","high-performance","http","kore","pgsql","tls","web-development"],"created_at":"2024-07-31T00:00:36.796Z","updated_at":"2025-04-28T12:12:23.765Z","avatar_url":"https://github.com/jorisvink.png","language":"C","funding_links":[],"categories":["C"],"sub_categories":[],"readme":"About\n-----\n\nKore (https://kore.io) is a web application platform for writing scalable,\nconcurrent web based processes in C or Python.\n\nIt is built with a \"secure by default\" approach. It is fully privilege\nseparated while using strong security features at the operating system level\nsuch as seccomp, pledge, unveil and more.\n\nToday Kore is used in a variety of applications ranging from high assurance\ncryptographic devices, machine-learning stacks and even in the aerospace\nindustry.\n\nFrom embedded platforms all the way to high performance servers. *Kore scales.*\n\nKey Features\n------------\n* Supports SNI\n* Supports HTTP/1.1\n* Websocket support\n* Privseps by default\n* TLS enabled by default\n* Optional background tasks\n* Built-in parameter validation\n* Optional asynchronous PostgreSQL support\n* Optional support for page handlers in Python\n* Reload private keys and certificates on-the-fly\n* Automatic X509 certificates via ACME (with privsep)\n* Private keys isolated in separate process (RSA and ECDSA)\n* Default sane TLS ciphersuites (PFS in all major browsers)\n* Modules can be reloaded on-the-fly, even while serving content\n* Worker processes sandboxed on OpenBSD (pledge) and Linux (seccomp)\n* Event driven (epoll/kqueue) architecture with per CPU worker processes\n* Build your web application as a precompiled dynamic library or single binary\n\nAnd lots more.\n\nLicense\n-------\n* Kore is licensed under the ISC license\n\nDocumentation\n--------------\n[Read the documentation](https://docs.kore.io/4.2.0/)\n\nPerformance\n-----------\nRead the [benchmarks](https://blog.kore.io/posts/benchmarks) blog post.\n\nPlatforms supported\n-------------------\n* Linux\n* OpenBSD\n* FreeBSD\n* MacOS\n\nKore only supports x64, arm and aarch64 architectures.\n\nBuilding Kore\n-------------\nClone this repository or get the latest release at [https://kore.io/releases/4.2.3](https://kore.io/releases/4.2.3).\n\nRequirements\n* openssl 1.1.1, libressl 3.x or openssl 3.\n\nRequirement for asynchronous curl (optional)\n* libcurl (7.64.0 or higher)\n\nRequirements for background tasks (optional)\n* pthreads\n\nRequirements for pgsql (optional)\n* libpq\n\nRequirements for python (optional)\n* Python 3.6+\n\nRequirements for lua support (optional)\n* Lua 5.4+\n\nNormal compilation and installation:\n\n```\n$ cd kore\n$ make\n# make install\n```\n\nIf you would like to build a specific flavor, you can enable\nthose by setting a shell environment variable before running **_make_**.\n\n* LUA=1 (compiles in LUA support)\n* ACME=1 (compiles in ACME support)\n* CURL=1 (compiles in asynchronous curl support)\n* TASKS=1 (compiles in task support)\n* PGSQL=1 (compiles in pgsql support)\n* DEBUG=1 (enables use of -d for debug)\n* NOHTTP=1 (compiles Kore without HTTP support)\n* NOOPT=1 (disable compiler optimizations)\n* JSONRPC=1 (compiles in JSONRPC support)\n* PYTHON=1 (compiles in the Python support)\n* TLS_BACKEND=none (compiles Kore without any TLS backend)\n\nNote that certain build flavors cannot be mixed together and you will just\nbe met with compilation errors.\n\nExample applications\n-----------------\nYou can find example applications under **_examples/_**.\n\nThe examples contain a README file with instructions on how\nto build or use them.\n\nMailing lists\n-------------\n\n**patches@kore.io** - Send patches here, preferably inline.\n\n**users@kore.io** - Questions regarding kore.\n\n\nIf you want to signup to those mailing lists send an empty email to\n\tlistname+subscribe@kore.io\n\n\nOther mailboxes (these are **not** mailing lists):\n\n**security@kore.io** - Mail this email if you think you found a security problem.\n\n**sponsor@kore.io** - If your company would like to sponsor part of Kore development.\n\nMore information can be found on https://kore.io/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorisvink%2Fkore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjorisvink%2Fkore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorisvink%2Fkore/lists"}