{"id":19153581,"url":"https://github.com/claviz/drayman","last_synced_at":"2026-03-10T09:40:06.581Z","repository":{"id":38370504,"uuid":"360417211","full_name":"Claviz/drayman","owner":"Claviz","description":"Server-side component framework.","archived":false,"fork":false,"pushed_at":"2026-02-19T14:49:39.000Z","size":32485,"stargazers_count":77,"open_issues_count":0,"forks_count":5,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-02-19T18:07:01.466Z","etag":null,"topics":["drayman","framework","nodejs","typescript"],"latest_commit_sha":null,"homepage":"https://drayman.io","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/Claviz.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":"2021-04-22T06:37:57.000Z","updated_at":"2026-02-19T14:49:44.000Z","dependencies_parsed_at":"2024-04-10T13:48:08.075Z","dependency_job_id":"da5bc17c-3ca0-40f3-a5ff-33acf59040ee","html_url":"https://github.com/Claviz/drayman","commit_stats":null,"previous_names":[],"tags_count":109,"template":false,"template_full_name":null,"purl":"pkg:github/Claviz/drayman","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Claviz%2Fdrayman","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Claviz%2Fdrayman/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Claviz%2Fdrayman/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Claviz%2Fdrayman/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Claviz","download_url":"https://codeload.github.com/Claviz/drayman/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Claviz%2Fdrayman/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30328898,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"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":["drayman","framework","nodejs","typescript"],"created_at":"2024-11-09T08:23:32.538Z","updated_at":"2026-03-10T09:40:06.536Z","avatar_url":"https://github.com/Claviz.png","language":"TypeScript","readme":"\u003cdiv align=\"center\"\u003e\n\n\u003cimg height=\"120\" src=\"https://i.imgur.com/HnEvlyD.png\"\u003e\n\n\u003ch1\u003eDrayman\u003c/h1\u003e\n\nDrayman is a server-side component framework.\n\n[Docs](https://drayman.io) · [Blog](https://drayman.io/blog) · [Changelog](https://github.com/Claviz/drayman/releases) · [Join Discord](https://discord.gg/5GYZTvUSxV) · [X](https://x.com/draymanio)\n\n![Version](https://img.shields.io/github/v/release/claviz/drayman)\n![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/claviz/drayman/config.yml)\n\n\u003c/div\u003e\n\n## ✨ Features\n\n- Drayman is designed to be easily installed and used to get your website up and running quickly.\n- Use any available HTML element, web component or custom Drayman third-party component together with server-side code in single script.\n- With Drayman, browser only renders what user should see - all logic and calculations happen server-side.\n\n## 📸 Snapshot\n\nDo you want to create a web application that, for example, allows the user to select a file from the file system and view it's contents? With Drayman it would be a single script:\n\n```tsx\nimport { promises as fs } from \"fs\";\n\nexport const component: DraymanComponent = async ({ forceUpdate }) =\u003e {\n  const files = (await fs.readdir(\"./\")).filter((x) =\u003e x.includes(\".\"));\n  let selectedFile;\n\n  return async () =\u003e {\n    return (\n      \u003c\u003e\n        \u003cp\u003eSelect a file to view it directly from file system\u003c/p\u003e\n        \u003cselect\n          onchange={async ({ value }) =\u003e {\n            selectedFile = value;\n            await forceUpdate();\n          }}\n        \u003e\n          {files.map((fileName) =\u003e (\n            \u003coption value={fileName}\u003e{fileName}\u003c/option\u003e\n          ))}\n        \u003c/select\u003e\n        \u003cbr /\u003e\n        {selectedFile \u0026\u0026 \u003cpre\u003e{await fs.readFile(selectedFile, \"utf-8\")}\u003c/pre\u003e}\n      \u003c/\u003e\n    );\n  };\n};\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaviz%2Fdrayman","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclaviz%2Fdrayman","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclaviz%2Fdrayman/lists"}