{"id":18565638,"url":"https://github.com/hypothermic/lightser","last_synced_at":"2026-04-15T18:31:55.246Z","repository":{"id":105191457,"uuid":"133910102","full_name":"hypothermic/Lightser","owner":"hypothermic","description":"Lightser - Lightweight asynchronous serialization for Java","archived":false,"fork":false,"pushed_at":"2018-05-18T06:25:15.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-13T16:40:39.137Z","etag":null,"topics":["deserialization","github","gradle","java","library","lightser","maven","serialization"],"latest_commit_sha":null,"homepage":"","language":"Java","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/hypothermic.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,"zenodo":null}},"created_at":"2018-05-18T06:03:02.000Z","updated_at":"2018-05-21T09:20:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"faabc5fd-794e-4b97-a04b-d652a657cea9","html_url":"https://github.com/hypothermic/Lightser","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hypothermic/Lightser","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2FLightser","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2FLightser/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2FLightser/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2FLightser/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hypothermic","download_url":"https://codeload.github.com/hypothermic/Lightser/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2FLightser/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31854701,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: 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":["deserialization","github","gradle","java","library","lightser","maven","serialization"],"created_at":"2024-11-06T22:19:36.883Z","updated_at":"2026-04-15T18:31:55.232Z","avatar_url":"https://github.com/hypothermic.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lightser\nLightweight Java library to make asynchronous serialization easier.\n\n## Example\n```java\nint[] object = new int[] {0, 3, 6, 9};\n\nLightser.serialize(object, sample, new SerializeCallback() {\n    public void onSerializeSuccessful() {\n        System.out.println(\"Serialize success\");\n    }\n    public void onSerializeFailed(Exception x) {\n        x.printStackTrace();\n    }\n});\n\nLightser.deserialize(sample, new DeserializeCallback() {\n    public void onDeserializeSuccessful(Serializable ser) {\n        if (Arrays.toString((int[]) ser).equals(\"[0, 3, 6, 9]\")) {\n            System.out.println(\"Deserialize success\");\n        }\n    }\n    public void onDeserializeFailed(Exception x) {\n        x.printStackTrace();\n    }\n});\n```\n\n## Maven dependency\n```xml\n\u003crepository\u003e\n  \u003cid\u003elightser-mvn-repo\u003c/id\u003e\n  \u003curl\u003ehttps://raw.github.com/hypothermic/lightser/mvn-repo/\u003c/url\u003e\n\u003c/repository\u003e\n\n\u003cdependency\u003e\n  \u003cgroupId\u003enl.hypothermic\u003c/groupId\u003e\n  \u003cartifactId\u003elightser\u003c/artifactId\u003e\n  \u003c!-- If you're using Maven3, specify version tag --\u003e\n  \u003cversion\u003eLATEST\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n## Gradle dependency\n```gradle\nrepositories {\n    maven {\n        url \"https://raw.github.com/hypothermic/lightser/mvn-repo/\"\n    }\n}\n\ndependencies {\n    // Note: use 'api' instead of 'compile' if you're using Android Studio.\n    compile group: 'nl.hypothermic', name: 'lightser', version: '1.0.0-RELEASE'\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypothermic%2Flightser","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhypothermic%2Flightser","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypothermic%2Flightser/lists"}