{"id":13497188,"url":"https://github.com/zhaojh329/libuwsc","last_synced_at":"2025-08-24T01:10:38.327Z","repository":{"id":28127893,"uuid":"116388230","full_name":"zhaojh329/libuwsc","owner":"zhaojh329","description":"A Lightweight and fully asynchronous WebSocket client library based on libev","archived":false,"fork":false,"pushed_at":"2022-02-21T09:55:17.000Z","size":258,"stargazers_count":291,"open_issues_count":10,"forks_count":59,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-06-10T11:12:50.822Z","etag":null,"topics":["cyassl","libev","libwebsocket","lightweight","lua-binding","mbedtls","openssl","websocket","wolfssl"],"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/zhaojh329.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-01-05T13:32:43.000Z","updated_at":"2025-02-15T16:38:02.000Z","dependencies_parsed_at":"2022-08-07T13:15:20.838Z","dependency_job_id":null,"html_url":"https://github.com/zhaojh329/libuwsc","commit_stats":null,"previous_names":[],"tags_count":34,"template":false,"template_full_name":null,"purl":"pkg:github/zhaojh329/libuwsc","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhaojh329%2Flibuwsc","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhaojh329%2Flibuwsc/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhaojh329%2Flibuwsc/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhaojh329%2Flibuwsc/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zhaojh329","download_url":"https://codeload.github.com/zhaojh329/libuwsc/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zhaojh329%2Flibuwsc/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271778236,"owners_count":24819265,"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","status":"online","status_checked_at":"2025-08-23T02:00:09.327Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["cyassl","libev","libwebsocket","lightweight","lua-binding","mbedtls","openssl","websocket","wolfssl"],"created_at":"2024-07-31T20:00:26.106Z","updated_at":"2025-08-24T01:10:38.301Z","avatar_url":"https://github.com/zhaojh329.png","language":"C","funding_links":[],"categories":["Tools per Language"],"sub_categories":["C"],"readme":"# libuwsc([中文](/README_ZH.md))\n\n[1]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=plastic\n[2]: /LICENSE\n[3]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=plastic\n[4]: https://github.com/zhaojh329/libuwsc/pulls\n[5]: https://img.shields.io/badge/Issues-welcome-brightgreen.svg?style=plastic\n[6]: https://github.com/zhaojh329/libuwsc/issues/new\n[7]: https://img.shields.io/badge/release-3.3.5-blue.svg?style=plastic\n[8]: https://github.com/zhaojh329/libuwsc/releases\n[9]: https://travis-ci.org/zhaojh329/libuwsc.svg?branch=master\n[10]: https://travis-ci.org/zhaojh329/libuwsc\n\n[![license][1]][2]\n[![PRs Welcome][3]][4]\n[![Issue Welcome][5]][6]\n[![Release Version][7]][8]\n[![Build Status][9]][10]\n\n[libev]: http://software.schmorp.de/pkg/libev.html\n[openssl]: https://github.com/openssl/openssl\n[mbedtls(polarssl)]: https://github.com/ARMmbed/mbedtls\n[CyaSSl(wolfssl)]: https://github.com/wolfSSL/wolfssl\n[lua-ev]: https://github.com/brimworks/lua-ev\n\nA Lightweight and fully asynchronous WebSocket client library based on [libev] for Embedded Linux.\nAnd provide Lua-binding.\n\n\n# Why should I choose libev?\n libev tries to follow the UNIX toolbox philosophy of doing one thing only, as good as possible.\n\n# Features\n* Lightweight - 35KB（Using glibc,stripped）\n* Fully asynchronous - Use [libev] as its event backend\n* Support ssl - OpenSSL, mbedtls and CyaSSl(wolfssl)\n* Code structure is concise and understandable, also suitable for learning\n* Lua-binding\n\n# Dependencies\n* [libev]\n* [openssl] - If you choose openssl as your SSL backend\n* [mbedtls(polarssl)] - If you choose mbedtls as your SSL backend\n* [cyassl(wolfssl)] - If you choose wolfssl as your SSL backend\n* [lua-ev] - If you use Lua\n\n# Install dependent packages\n\n    sudo apt install libev-dev libssl-dev\n\n# Build and install\n\n\tgit clone --recursive https://github.com/zhaojh329/libuwsc.git\n\tcd libuwsc\n\tmkdir build \u0026\u0026 cd build\n\tcmake ..\n\tmake \u0026\u0026 sudo make install\n\t\n# Install on OpenWrt\n\n    opkg update\n    opkg list | grep libuwsc\n    opkg install libuwsc-nossl\n\nIf the install command fails, you can [compile it yourself](/BUILDOPENWRT.md).\n\n# Contributing\nIf you would like to help making [libuwsc](https://github.com/zhaojh329/libuwsc) better,\nsee the [CONTRIBUTING.md](https://github.com/zhaojh329/libuwsc/blob/master/CONTRIBUTING.md) file.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhaojh329%2Flibuwsc","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzhaojh329%2Flibuwsc","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzhaojh329%2Flibuwsc/lists"}