{"id":46529654,"url":"https://github.com/dumbjs/arrow-render-to-string","last_synced_at":"2026-04-26T15:00:43.129Z","repository":{"id":203237063,"uuid":"706944574","full_name":"dumbjs/arrow-render-to-string","owner":"dumbjs","description":"Render ArrowJS templates and partials to string. (Deno, Node, Bun, Browser)","archived":false,"fork":false,"pushed_at":"2025-12-17T07:12:56.000Z","size":668,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-06T22:50:46.742Z","etag":null,"topics":["arrow-js","arrowjs","browser","bun","deno","node","render-to-string","ssr"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/dumbjs.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},"funding":{"liberapay":"reaper","ko_fi":"barelyreaper","github":"barelyhuman"}},"created_at":"2023-10-18T22:59:19.000Z","updated_at":"2025-12-17T07:12:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"3d614455-40df-4b08-8df1-e45306c20290","html_url":"https://github.com/dumbjs/arrow-render-to-string","commit_stats":null,"previous_names":["barelyhuman/arrow-render-to-string","dumbjs/arrow-render-to-string"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/dumbjs/arrow-render-to-string","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dumbjs%2Farrow-render-to-string","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dumbjs%2Farrow-render-to-string/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dumbjs%2Farrow-render-to-string/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dumbjs%2Farrow-render-to-string/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dumbjs","download_url":"https://codeload.github.com/dumbjs/arrow-render-to-string/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dumbjs%2Farrow-render-to-string/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32301330,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T09:34:17.070Z","status":"ssl_error","status_checked_at":"2026-04-26T09:34:00.993Z","response_time":129,"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":["arrow-js","arrowjs","browser","bun","deno","node","render-to-string","ssr"],"created_at":"2026-03-06T21:37:48.674Z","updated_at":"2026-04-26T15:00:43.122Z","avatar_url":"https://github.com/dumbjs.png","language":"JavaScript","funding_links":["https://liberapay.com/reaper","https://ko-fi.com/barelyreaper","https://github.com/sponsors/barelyhuman"],"categories":[],"sub_categories":[],"readme":"\u003cp\u003e\n  \u003cimg width=\"1191\" alt=\"Frame 13\" src=\"https://github.com/dumbjs/arrow-render-to-string/assets/43572006/3a8910fb-4a23-49cc-8407-f8c296275ba7\"\u003e\n\u003c/p\u003e\n\n![](https://img.shields.io/bundlephobia/min/arrow-render-to-string?display_name=tag\u0026sort=semver\u0026style=flat\u0026colorA=181819\u0026colorB=181819)\n![](https://img.shields.io/npm/v/arrow-render-to-string?display_name=tag\u0026sort=semver\u0026style=flat\u0026colorA=181819\u0026colorB=181819)\n\nRender [ArrowJS](http://arrow-js.com) templates and partials to string.\n\nWorks wherever JS does.\n\n## Installation\n\n```bash\nnpm install arrow-render-to-string\n```\n\n## Usage/Examples\n\n### Basic\n\n```javascript\nimport { html } from '@arrow-js/core'\nimport { renderToString } from 'arrow-render-to-string'\n\nconst message = 'Hello World'\nconst view = html`\u003cp\u003e${message}\u003c/p\u003e`\n\nrenderToString(view) //=\u003e \u003cp\u003eHello World\u003c/p\u003e\n```\n\n### Reactive Variables\n\n```javascript\nimport { html, reactive } from '@arrow-js/core'\nimport { renderToString } from 'arrow-render-to-string'\n\nconst state = reactive({\n  count: 0,\n})\nconst view = html`\u003cp\u003e${() =\u003e state.count}\u003c/p\u003e`\n\nrenderToString(view) //=\u003e \u003cp\u003e0\u003c/p\u003e\n```\n\n### Events\n\nEvents are stripped out, for you to re-hydrate on the client\n\n```javascript\nimport { html, reactive } from '@arrow-js/core'\nimport { renderToString } from 'arrow-render-to-string'\n\nconst state = reactive({\n  count: 0,\n})\nconst view = html`\u003cbutton @click=\"${() =\u003e (state.count += 1)}\"\u003e\n  ${() =\u003e state.count}\n\u003c/button\u003e`\n\nrenderToString(view) //=\u003e \u003cbutton @click=\"\u003c!--➳❍--\u003e\"\u003e0\u003c/button\u003e\n```\n\n## License\n\n[MIT](/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdumbjs%2Farrow-render-to-string","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdumbjs%2Farrow-render-to-string","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdumbjs%2Farrow-render-to-string/lists"}