{"id":13570904,"url":"https://github.com/fukamachi/woo","last_synced_at":"2026-02-02T22:10:55.396Z","repository":{"id":21881780,"uuid":"25205462","full_name":"fukamachi/woo","owner":"fukamachi","description":"A fast non-blocking HTTP server on top of libev","archived":false,"fork":false,"pushed_at":"2024-09-06T01:48:29.000Z","size":1888,"stargazers_count":1329,"open_issues_count":26,"forks_count":98,"subscribers_count":61,"default_branch":"master","last_synced_at":"2025-06-29T16:43:06.681Z","etag":null,"topics":["common-lisp","webserver"],"latest_commit_sha":null,"homepage":"http://ultra.wikia.com/wiki/Woo_(kaiju)","language":"Common Lisp","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/fukamachi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","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},"funding":{"github":["fukamachi"]}},"created_at":"2014-10-14T12:30:03.000Z","updated_at":"2025-06-25T21:11:08.000Z","dependencies_parsed_at":"2023-12-21T06:22:10.991Z","dependency_job_id":"cf008370-479d-4c90-b712-b0840d1e87ff","html_url":"https://github.com/fukamachi/woo","commit_stats":{"total_commits":375,"total_committers":19,"mean_commits":"19.736842105263158","dds":0.06133333333333335,"last_synced_commit":"7f5219c55d49190f5ae17b123a8729b31c5d706e"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fukamachi/woo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fwoo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fwoo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fwoo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fwoo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fukamachi","download_url":"https://codeload.github.com/fukamachi/woo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fukamachi%2Fwoo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29021031,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T18:51:31.335Z","status":"ssl_error","status_checked_at":"2026-02-02T18:49:20.777Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["common-lisp","webserver"],"created_at":"2024-08-01T14:00:56.349Z","updated_at":"2026-02-02T22:10:55.366Z","avatar_url":"https://github.com/fukamachi.png","language":"Common Lisp","funding_links":["https://github.com/sponsors/fukamachi"],"categories":["Common Lisp","REPLs ##","Interfaces to other package managers"],"sub_categories":[],"readme":"# Woo\n\n[![CI](https://github.com/fukamachi/woo/actions/workflows/ci.yml/badge.svg)](https://github.com/fukamachi/woo/actions/workflows/ci.yml)\n\nWoo is a fast non-blocking HTTP server built on top of [libev](http://software.schmorp.de/pkg/libev.html). Although Woo is written in Common Lisp, it aims to be the fastest web server written in any programming language.\n\n## Warning\n\nThis software is still BETA quality.\n\n## How fast?\n\n![Benchmark graph](images/benchmark.png)\n\nSee [benchmark.md](benchmark.md) for the detail.\n\n## Usage\n\nUse `clack:clackup` or `woo:run` to start a web server. The first argument is a Lack \"app\". See [Lack's README](https://github.com/fukamachi/lack#readme) for instruction on how to build it.\n\nRemember to pass \":debug nil\" to turn off the debugger mode on production environments (it's on by default). Otherwise, your server will go down on internal errors.\n\n### Start a server\n\n```common-lisp\n(ql:quickload :woo)\n\n(woo:run\n  (lambda (env)\n    (declare (ignore env))\n    '(200 (:content-type \"text/plain\") (\"Hello, World\"))))\n```\n\n### Start with Clack\n\n```common-lisp\n(ql:quickload :clack)\n\n(clack:clackup\n  (lambda (env)\n    (declare (ignore env))\n    '(200 (:content-type \"text/plain\") (\"Hello, World\")))\n  :server :woo\n  :use-default-middlewares nil)\n```\n\n### Cluster\n\n```common-lisp\n(woo:run\n  (lambda (env)\n    (declare (ignore env))\n    '(200 (:content-type \"text/plain\") (\"Hello, World\")))\n  :worker-num 4)\n```\n\n### SSL Support\n\nUse SSL key arguments of `woo:run` or `clack:clackup`.\n\n```commonlisp\n(woo:run app\n         :ssl-cert-file #P\"path/to/cert.pem\"\n         :ssl-key-file #P\"path/to/key.pem\"\n         :ssl-key-password \"password\")\n\n(clack:clackup app\n               :ssl-cert-file #P\"path/to/cert.pem\"\n               :ssl-key-file #P\"path/to/key.pem\"\n               :ssl-key-password \"password\")\n```\n\nTo disable the HTTPS support to omit a dependency on CL+SSL, add `woo-no-ssl` to `cl:*features*`.\n\n## Signal handling\n\nWhen the master process gets these signals, it kills worker processes and quits afterwards.\n\n- QUIT: graceful shutdown, waits for all requests are finished.\n- INT/TERM: shutdown immediately.\n\n## Benchmarks\n\nSee [benchmark.md](benchmark.md).\n\n## Installation\n\n### Requirements\n\n* UNIX (GNU Linux, Mac, \\*BSD)\n* SBCL\n* [libev](http://libev.schmorp.de)\n* OpenSSL or LibreSSL (Optional)\n  * To turn off SSL, add `:woo-no-ssl` to `cl:*features*` before loading Woo.\n\n### Installing via Quicklisp\n\n```common-lisp\n(ql:quickload :woo)\n```\n\n## Docker example\n\n* [Dockerfile](https://github.com/quickdocs/quickdocs-api/blob/master/docker/Dockerfile.production) for Quickdocs's API server.\n\n## See Also\n\n* [Lack](https://github.com/fukamachi/lack): Building a web application\n* [Clack](https://github.com/fukamachi/clack): An abstraction layer for web servers\n* [libev](http://software.schmorp.de/pkg/libev.html)\n\n## Author\n\n* Eitaro Fukamachi (e.arrows@gmail.com)\n\n## Copyright\n\nCopyright (c) 2014 Eitaro Fukamachi \u0026 [contributors](https://github.com/fukamachi/woo/graphs/contributors)\n\n## License\n\nLicensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffukamachi%2Fwoo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffukamachi%2Fwoo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffukamachi%2Fwoo/lists"}