{"id":33469685,"url":"https://github.com/ryusufe/solid-kitx","last_synced_at":"2025-11-27T11:01:16.489Z","repository":{"id":325700335,"uuid":"1100894032","full_name":"ryusufe/solid-kitx","owner":"ryusufe","description":"Minimal and Fully Customizable Node-Based Canvas for SolidJS","archived":false,"fork":false,"pushed_at":"2025-11-22T20:21:11.000Z","size":342,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-22T22:12:37.961Z","etag":null,"topics":["canvas","flowchart","library","node-based","solidjs"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/ryusufe.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-11-20T22:51:08.000Z","updated_at":"2025-11-22T20:21:14.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ryusufe/solid-kitx","commit_stats":null,"previous_names":["ryusufe/solid-kitx"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ryusufe/solid-kitx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryusufe%2Fsolid-kitx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryusufe%2Fsolid-kitx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryusufe%2Fsolid-kitx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryusufe%2Fsolid-kitx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ryusufe","download_url":"https://codeload.github.com/ryusufe/solid-kitx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ryusufe%2Fsolid-kitx/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"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-11-25T02:00:05.816Z","response_time":54,"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":["canvas","flowchart","library","node-based","solidjs"],"created_at":"2025-11-25T09:00:28.569Z","updated_at":"2025-11-26T10:02:14.609Z","avatar_url":"https://github.com/ryusufe.png","language":"TypeScript","funding_links":["https://buymeacoffee.com/ryusufe"],"categories":[],"sub_categories":[],"readme":"![Solid Kit Banner](https://github.com/ryusufe/solid-kitx/raw/main/assets/banner.png)\n\nA minimal, lightweight, and highly customizable node-based editor library for SolidJS. Built with performance and flexibility in mind.\n\n\u003cdiv align=\"center\" style=\"font-size:2em;\"\u003e\n\u003ca  href=\"https://github.com/ryusufe/solid-kitx/wiki\"\u003e📖Wiki\u003c/a\u003e\n\u003ca href=\"https://ryusufe.github.io/solid-kitx/\"\u003e✨DEMO\u003c/a\u003e\n\u003ca  href=\"https://buymeacoffee.com/ryusufe\"\u003e💖Support\u003c/a\u003e\n\u003c/div\u003e\n\n---\n\n```bash\nnpm install solid-kitx\n```\n\n## Basic Usage\n\n\n```tsx\nimport { createSignal, Component } from \"solid-js\";\nimport { SolidKitx, ConnectionType, NodeType, ViewPort } from \"solid-kitx\";\nimport \"solid-kitx/index.css\";\n\nconst App: Component = () =\u003e {\n  const [nodes, setNodes] = createSignal\u003cNodeType[]\u003e([\n    {\n      id: \"node-1\",\n      x: 100,\n      y: 100,\n      width: 150,\n      height: 100,\n      data: { label: \"Node 1\" },\n    },\n    {\n      id: \"node-2\",\n      x: 400,\n      y: 200,\n      width: 150,\n      height: 100,\n      data: { label: \"Node 2\" },\n    },\n  ]);\n\n  const [connections, setConnections] = createSignal\u003cConnectionType[]\u003e([\n    {\n      id: \"connection-1\",\n      from: { id: \"node-1\", side: \"right\" },\n      to: { id: \"node-2\", side: \"left\" },\n    },\n  ]);\n\n  const [viewport, setViewport] = createSignal\u003cViewPort\u003e({ x: 0, y: 0, zoom: 1 });\n\n  return (\n    \u003cdiv style={{ width: \"100vw\", height: \"100vh\" }}\u003e\n      \u003cSolidKitx\n        nodes={nodes()}\n        connections={connections()}\n        viewport={viewport()}\n        onNodesChange={setNodes}\n        onConnectionsChange={setConnections}\n        onViewportChange={setViewport}\n      /\u003e\n    \u003c/div\u003e\n  );\n};\n\nexport default App;\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryusufe%2Fsolid-kitx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fryusufe%2Fsolid-kitx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fryusufe%2Fsolid-kitx/lists"}