{"id":24805019,"url":"https://github.com/schwalbe-t/htmlscript","last_synced_at":"2025-10-14T03:51:13.218Z","repository":{"id":268808923,"uuid":"740434228","full_name":"schwalbe-t/htmlscript","owner":"schwalbe-t","description":"Making HTML Turing-complete.","archived":false,"fork":false,"pushed_at":"2024-01-08T10:41:04.000Z","size":4,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-25T07:44:39.613Z","etag":null,"topics":["html","interpreter","javascript","javascript-interpreter","language"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/schwalbe-t.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}},"created_at":"2024-01-08T10:40:39.000Z","updated_at":"2024-01-08T15:27:41.000Z","dependencies_parsed_at":"2024-12-19T03:34:06.831Z","dependency_job_id":"a2f0dc6c-56d3-417c-8171-5ec19986a44f","html_url":"https://github.com/schwalbe-t/htmlscript","commit_stats":null,"previous_names":["schwalbe-t/htmlscript"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/schwalbe-t/htmlscript","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schwalbe-t%2Fhtmlscript","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schwalbe-t%2Fhtmlscript/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schwalbe-t%2Fhtmlscript/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schwalbe-t%2Fhtmlscript/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/schwalbe-t","download_url":"https://codeload.github.com/schwalbe-t/htmlscript/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/schwalbe-t%2Fhtmlscript/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017783,"owners_count":26086145,"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-10-14T02:00:06.444Z","response_time":60,"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":["html","interpreter","javascript","javascript-interpreter","language"],"created_at":"2025-01-30T07:16:22.418Z","updated_at":"2025-10-14T03:51:13.202Z","avatar_url":"https://github.com/schwalbe-t.png","language":"JavaScript","readme":"# HTMLScript\n\n```html\n\u003c!doctype html\u003e\n\u003chtml\u003e\n    \u003chead\u003e\n        \u003cmeta charset=\"utf-8\"\u003e\n        \u003ctitle\u003eFibonacci\u003c/title\u003e\n        \u003cscript src=\"htmlscript.js\"\u003e\u003c/script\u003e\n    \u003c/head\u003e\n    \u003cbody\u003e\n        \u003cprogram\u003e\n            \u003cset name=\"log\"\u003e\u003cjs exec=\"console.log\"\u003e\u003c/js\u003e\u003c/set\u003e\n            \u003cset name=\"n\"\u003e\u003cnumber val=\"0\"\u003e\u003c/number\u003e\u003c/set\u003e\n            \u003cset name=\"a\"\u003e\u003cnumber val=\"0\"\u003e\u003c/number\u003e\u003c/set\u003e\n            \u003cset name=\"b\"\u003e\u003cnumber val=\"1\"\u003e\u003c/number\u003e\u003c/set\u003e\n            \u003cloop\u003e\n                \u003cif\u003e\n                    \u003cgteq\u003e\u003cget name=\"n\"\u003e\u003c/get\u003e\u003cnumber val=\"20\"\u003e\u003c/number\u003e\u003c/gteq\u003e\n                    \u003cbreak\u003e\u003c/break\u003e\n                \u003c/if\u003e\n                \u003cset name=\"n\"\u003e\u003cadd\u003e\u003cget name=\"n\"\u003e\u003c/get\u003e\u003cnumber val=\"1\"\u003e\u003c/number\u003e\u003c/add\u003e\u003c/set\u003e\n                \u003cset name=\"c\"\u003e\u003cadd\u003e\u003cget name=\"a\"\u003e\u003c/get\u003e\u003cget name=\"b\"\u003e\u003c/get\u003e\u003c/add\u003e\u003c/set\u003e\n                \u003ccall\u003e\u003cget name=\"log\"\u003e\u003c/get\u003e\u003cget name=\"c\"\u003e\u003c/get\u003e\u003c/call\u003e\n                \u003cset name=\"a\"\u003e\u003cget name=\"b\"\u003e\u003c/get\u003e\u003c/set\u003e\n                \u003cset name=\"b\"\u003e\u003cget name=\"c\"\u003e\u003c/get\u003e\u003c/set\u003e\n            \u003c/loop\u003e\n        \u003c/program\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n```\n```\n1\n2\n3\n5\n8\n13\n21\n34\n55\n89\n144\n233\n377\n610\n987\n1597\n2584\n4181\n6765\n10946\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschwalbe-t%2Fhtmlscript","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fschwalbe-t%2Fhtmlscript","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fschwalbe-t%2Fhtmlscript/lists"}