{"id":44151352,"url":"https://github.com/d0iasm/saba","last_synced_at":"2026-02-09T03:34:19.922Z","repository":{"id":62601107,"uuid":"523588385","full_name":"d0iasm/saba","owner":"d0iasm","description":"SaBA: Sample Browser App supporting HTML, CSS and JavaScript","archived":false,"fork":false,"pushed_at":"2025-10-19T16:53:55.000Z","size":957,"stargazers_count":154,"open_issues_count":0,"forks_count":11,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-20T00:40:03.950Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","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/d0iasm.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":"2022-08-11T04:46:16.000Z","updated_at":"2025-10-19T16:53:59.000Z","dependencies_parsed_at":"2023-10-01T15:46:47.298Z","dependency_job_id":"59bf1dbf-1d74-4a13-8b1e-8941226c400b","html_url":"https://github.com/d0iasm/saba","commit_stats":null,"previous_names":["d0iasm/saba"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/d0iasm/saba","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d0iasm%2Fsaba","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d0iasm%2Fsaba/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d0iasm%2Fsaba/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d0iasm%2Fsaba/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/d0iasm","download_url":"https://codeload.github.com/d0iasm/saba/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/d0iasm%2Fsaba/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29255602,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-09T03:07:45.136Z","status":"ssl_error","status_checked_at":"2026-02-09T03:07:24.123Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":[],"created_at":"2026-02-09T03:34:19.293Z","updated_at":"2026-02-09T03:34:19.918Z","avatar_url":"https://github.com/d0iasm.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SaBA: Sample Browser Application\n\n[![Actions Status](https://github.com/d0iasm/saba/actions/workflows/rust.yml/badge.svg)](https://github.com/d0iasm/saba/actions)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/d0iasm/rvemu/master/LICENSE)\n\nSample Browser Application (SaBA) on a single thread/process. The browser runs on Mac/Linux as a CUI application or on [Wasabi OS](https://github.com/hikalium/wasabi) as a GUI application.\n\n\u003cimg src=\"./test.png\" alt=\"test page on SaBA on Wasabi OS\" width=\"600\"/\u003e\n\nThe book is published on Nov 9, 2024!\n\n[『［作って学ぶ］ブラウザのしくみ──HTTP、HTML、CSS、JavaScriptの裏側』](https://amzn.asia/d/j1XxxsN) is written in Japanese. The book describes how to make your own browser from scratch in Rust. The code used in the book is based on this repository.\n\n\u003cimg src=\"https://m.media-amazon.com/images/I/81fO73On7jL._SL1500_.jpg\" alt=\"［作って学ぶ］ブラウザのしくみ──HTTP、HTML、CSS、JavaScriptの裏側\" width=\"300\"/\u003e\n\n## Supported Features\n\nIt supports sending/receiving HTTP GET request/response, basic HTML tags, basic CSS syntax and basic JavaScript syntax.\n\n- [x] Handle HTTP GET request/response\n- [x] Basic HTML tags (html, head, body, h1, h2, p, etc.)\n- [x] Basic CSS syntax (background-color, color, display, etc.)\n- [x] Basic JavaScript syntax (addition, subtraction, variable, function)\n\nUpcoming features:\n\n- [ ] QUIC (HTTP/3) protocol\n- [ ] HTTPS\n- [ ] More HTML tags\n- [ ] More CSS syntax\n- [ ] GUI on Mac/Linux\n\n## How to Run\n\n### GUI Application on Wasabi OS\n\nYou may not be able to run via `cargo run` because the target architecture\nis different from your environment.\nSo use a helper script to run the code,\n\n```\n$ ./run_on_wasabi.sh\n```\n\n### CUI Application on Mac/Linux\n\nFor CUI browser on your host computer,\n\n```\n$ cargo run --features=cui --bin=saba_cui --no-default-features\n```\n\n### GUI Application on Mac/Linux\n\nGUI on Mac/Linux is not supported yet.\n\nFor GUI browser on your host computer,\n\n```\n$ cargo run --features=gui --bin=saba_gui --no-default-features\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd0iasm%2Fsaba","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fd0iasm%2Fsaba","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fd0iasm%2Fsaba/lists"}