{"id":36606530,"url":"https://github.com/yang-central/yangkit","last_synced_at":"2026-01-12T08:45:53.679Z","repository":{"id":43141306,"uuid":"509349070","full_name":"yang-central/yangkit","owner":"yang-central","description":"Yangkit is a toolkit for YANG(RFC7950) data model language including YANG parser,YANG data and other tools.","archived":false,"fork":false,"pushed_at":"2025-06-30T09:50:08.000Z","size":8125,"stargazers_count":9,"open_issues_count":5,"forks_count":5,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-06-30T10:43:13.087Z","etag":null,"topics":["java","parser","yang"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yang-central.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"lllyfeng","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2022-07-01T06:44:44.000Z","updated_at":"2025-06-30T09:50:13.000Z","dependencies_parsed_at":"2024-05-17T10:29:19.133Z","dependency_job_id":"00bb0fb7-a29d-464c-9188-d3ee18c9704a","html_url":"https://github.com/yang-central/yangkit","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/yang-central/yangkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yang-central%2Fyangkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yang-central%2Fyangkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yang-central%2Fyangkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yang-central%2Fyangkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yang-central","download_url":"https://codeload.github.com/yang-central/yangkit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yang-central%2Fyangkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28337599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"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":["java","parser","yang"],"created_at":"2026-01-12T08:45:53.612Z","updated_at":"2026-01-12T08:45:53.674Z","avatar_url":"https://github.com/yang-central.png","language":"Java","funding_links":["https://ko-fi.com/lllyfeng"],"categories":[],"sub_categories":[],"readme":"# Yangkit\n\n## overview\n\nYangkit is a toolkit for YANG([RFC7950](https://datatracker.ietf.org/doc/html/rfc7950)) data model language including YANG parser,YANG data and other tools.\n\n## Yangkit components\n* [yangkit-parser](yangkit-parser/README.md): parse YANG files and validate the parsed YANG modules\n* [yangkit-model-api](yangkit-model-api/README.md): The APIs for YANG model\n* [yangkit-model-impl](yangkit-model-impl/README.md): The implementations for YANG model\n* [yangkit-xpath-api](yangkit-xpath-api/README.md): The APIs for YANG XPATH parser,validator and evaluator.\n* [yangkit-xpath-impl](yangkit-xpath-impl/README.md): The Implementations for YANG XPATH parser,validator and evaluator.\n* [yangkit-data-api](yangkit-data-api/README.md): The APIs for YANG data representation and operation.\n* [yangkit-data-impl](yangkit-data-impl/README.md): The Implementations for YANG data representation and operation.\n\n## Installation\n### From source\ngit clone https://github.com/yang-central/yangkit.git\n\nand execute the maven command:\n\nmvn clean install\n\n### maven dependency\n#### yangkit-parser\n        \u003cdependency\u003e\n            \u003cgroupId\u003eio.github.yang-central.yangkit\u003c/groupId\u003e\n            \u003cartifactId\u003eyangkit-parser\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003c/dependency\u003e\n#### yangkit-model-api\n        \u003cdependency\u003e\n            \u003cgroupId\u003eio.github.yang-central.yangkit\u003c/groupId\u003e\n            \u003cartifactId\u003eyangkit-model-api\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003c/dependency\u003e\n#### yangkit-model-impl\n        \u003cdependency\u003e\n            \u003cgroupId\u003eio.github.yang-central.yangkit\u003c/groupId\u003e\n            \u003cartifactId\u003eyangkit-model-impl\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003c/dependency\u003e\n#### yangkit-xpath-api\n        \u003cdependency\u003e\n            \u003cgroupId\u003eio.github.yang-central.yangkit\u003c/groupId\u003e\n            \u003cartifactId\u003eyangkit-xpath-api\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003c/dependency\u003e\n#### yangkit-xpath-impl\n        \u003cdependency\u003e\n            \u003cgroupId\u003eio.github.yang-central.yangkit\u003c/groupId\u003e\n            \u003cartifactId\u003eyangkit-xpath-impl\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003c/dependency\u003e\n#### yangkit-data-api\n        \u003cdependency\u003e\n            \u003cgroupId\u003eio.github.yang-central.yangkit\u003c/groupId\u003e\n            \u003cartifactId\u003eyangkit-data-api\u003c/artifactId\u003e\n            \u003cversion\u003e1.0.0\u003c/version\u003e\n        \u003c/dependency\u003e\n## Documentation\nPlease see the java doc in components.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyang-central%2Fyangkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyang-central%2Fyangkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyang-central%2Fyangkit/lists"}