{"id":29275913,"url":"https://github.com/wipeseals/asciidrom","last_synced_at":"2026-02-06T15:03:15.832Z","repository":{"id":301572832,"uuid":"1009687100","full_name":"wipeseals/asciidrom","owner":"wipeseals","description":"Convert Wavedrom JSON to source-code-friendly ASCII art.","archived":false,"fork":false,"pushed_at":"2025-06-27T15:11:22.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-05T07:47:47.567Z","etag":null,"topics":["ascii-art","online-editor","vibecoding","wavedrom"],"latest_commit_sha":null,"homepage":"https://wipeseals.github.io/asciidrom/","language":"HTML","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/wipeseals.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}},"created_at":"2025-06-27T14:40:34.000Z","updated_at":"2025-06-27T15:15:10.000Z","dependencies_parsed_at":"2025-07-05T07:41:07.679Z","dependency_job_id":null,"html_url":"https://github.com/wipeseals/asciidrom","commit_stats":null,"previous_names":["wipeseals/asciidrom"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/wipeseals/asciidrom","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wipeseals%2Fasciidrom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wipeseals%2Fasciidrom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wipeseals%2Fasciidrom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wipeseals%2Fasciidrom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wipeseals","download_url":"https://codeload.github.com/wipeseals/asciidrom/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wipeseals%2Fasciidrom/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29165709,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T14:37:12.680Z","status":"ssl_error","status_checked_at":"2026-02-06T14:36:22.973Z","response_time":59,"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":["ascii-art","online-editor","vibecoding","wavedrom"],"created_at":"2025-07-05T07:40:58.107Z","updated_at":"2026-02-06T15:03:15.825Z","avatar_url":"https://github.com/wipeseals.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Asciidrom\n\n[![Deploy static content to Pages](https://github.com/wipeseals/asciidrom/actions/workflows/deploy.yml/badge.svg)](https://github.com/wipeseals/asciidrom/actions/workflows/deploy.yml)\n\nA web-based tool that converts [WaveDrom](https://wavedrom.com/) timing diagrams to ASCII art, making it easy to include waveforms in source code, documentation, and text-based formats.\n\n🔗 **Live Demo:** [https://wipeseals.github.io/asciidrom/](https://wipeseals.github.io/asciidrom/)\n\n## Overview\n\nAsciidrom bridges the gap between visual timing diagrams and text-based documentation. It takes WaveDrom JSON input and converts it into clean ASCII art that can be easily copied and pasted into source code comments, README files, or any text-based medium.\n\n## Features\n\n- **WaveDrom to ASCII Conversion**: Convert WaveDrom JSON timing diagrams to source-code-friendly ASCII art\n- **Real-time Preview**: See your ASCII output update as you type\n- **Dark/Light Theme**: Toggle between dark and light modes for comfortable viewing\n- **Copy-Paste Friendly**: Generated ASCII art is ready to be pasted into your code or documentation\n- **Browser-Based**: No installation required - works directly in your web browser\n- **Signal Grouping Support**: Handles nested signal groups and hierarchical displays\n\n## Usage\n\n1. Visit [https://wipeseals.github.io/asciidrom/](https://wipeseals.github.io/asciidrom/)\n2. Enter your WaveDrom JSON in the input area (a sample is provided by default)\n3. Click \"Convert\" or press `Ctrl+Enter` to generate ASCII art\n4. Copy the ASCII output and paste it wherever you need it\n\n### Example\n\n**WaveDrom JSON Input:**\n```js\n{\n  signal: [\n    { name: \"clk\", wave: \"p..P..p..P..p\" },\n    { name: \"req\", wave: \"0.1..0....10.\" },\n    { name: \"ack\", wave: \"0..1..0..1.0.\" }\n  ]\n}\n```\n\n**ASCII Art Output:**\n```\nclk | _/¯¯¯¯¯¯¯_/¯¯¯¯¯¯¯_/¯¯¯¯¯¯¯_/¯¯¯¯¯¯¯_/¯\nreq | _______/¯¯¯¯¯¯¯¯\\______________/¯¯\\____\nack | __________/¯¯¯¯¯¯¯¯\\________/¯¯¯¯¯\\____\n```\n\n## Installation\n\nNo installation required! Asciidrom runs entirely in your web browser. Simply visit the live demo link above.\n\nFor local development:\n\n1. Clone this repository:\n   ```bash\n   git clone https://github.com/wipeseals/asciidrom.git\n   ```\n\n2. Open `index.html` in your web browser\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.\n\n## Related Projects\n\n- **[WaveDrom](https://wavedrom.com/)**: The original digital timing diagram rendering engine that inspired this project\n- **[WaveDrom Editor](https://wavedrom.com/editor.html)**: Official WaveDrom online editor for creating visual timing diagrams\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Thanks to the [WaveDrom](https://wavedrom.com/) project for creating the excellent timing diagram format\n- Built with modern web technologies for a seamless user experience\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwipeseals%2Fasciidrom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwipeseals%2Fasciidrom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwipeseals%2Fasciidrom/lists"}