SaaSHub helps you find the best software and product alternatives Learn more →
Top 18 Go ascii-art Projects
-
// api.js const CACHE_TTL = 30 * 60 * 1000; // 30 minutes const cache = new Map(); export async function getWeather(location) { const cacheKey = location.toLowerCase(); // Check cache first if (cache.has(cacheKey)) { const { data, timestamp } = cache.get(cacheKey); if (Date.now() - timestamp < CACHE_TTL) { return data; } } // Fetch from free API (wttr.in) const url = `https://wttr.in/${encodeURIComponent(location)}?format=j1`; const response = await fetch(url); if (!response.ok) { throw new Error(`Location "${location}" not found`); } const data = await response.json(); cache.set(cacheKey, { data, timestamp: Date.now() }); return { location: data.nearest_area[0].areaName[0].value, country: data.nearest_area[0].country[0].value, current: data.current_condition[0], forecast: data.weather, }; }
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
-
ascii-image-converter
A cross-platform command-line tool to convert images into ascii art and print them on the console. Now supports braille art!
-
-
-
-
-
stonks
Stonks is a terminal based stock visualizer and tracker that displays realtime stocks in graph format in a terminal. See how fast your stonks will crash. (by ericm)
-
reader
reader is for your command line what the “readability” view is for modern browsers: A lightweight tool offering better readability of web pages (and EML files!) on the CLI. (https://codeberg.org/mrus/reader) (by mrusme)
-
bit
CLI/TUI Logo Designer + ANSI Font Library with Gradients, Shadows, and Multi-Format Export (by superstarryeyes)
Project mention: Show HN: Bit – CLI/TUI Logo Designer and ANSI Font Library | news.ycombinator.com | 2025-10-28 -
-
-
-
Project mention: Show HN: Runal – A text-based creative coding environment for the terminal | news.ycombinator.com | 2025-07-02
-
-
-
-
Go ascii-art discussion
Go ascii-art related posts
-
Star Wars SSH and Telnet Server Written in Go
-
Help creating terminal art
-
The Terminal Escape Sequences Ocean Is Deep and Dark
-
Ask HN: Where can ASCII Art be Commissioned?
-
Draw ASCII art in terminal!
-
At Last! Tool generates "Hand-Drawn" diagrams based on ascii text-file illustrations
-
A note from our sponsor - SaaSHub
www.saashub.com | 8 Jun 2026
Index
What are some of the best open-source ascii-art projects in Go? This list will help you:
| # | Project | Stars |
|---|---|---|
| 1 | wttr.in | 29,795 |
| 2 | wego | 8,486 |
| 3 | ascii-image-converter | 3,261 |
| 4 | image2ascii | 973 |
| 5 | diagram | 896 |
| 6 | neonmodem | 694 |
| 7 | ascii-movie | 594 |
| 8 | stonks | 568 |
| 9 | reader | 407 |
| 10 | bit | 391 |
| 11 | asciitosvg | 222 |
| 12 | tdraw | 193 |
| 13 | tcg | 120 |
| 14 | runal | 104 |
| 15 | go-pic2text | 25 |
| 16 | go-rain | 7 |
| 17 | RR-vis | 6 |
| 18 | asciify | 3 |