Go ascii-art

Open-source Go projects categorized as ascii-art

Top 18 Go ascii-art Projects

  1. wttr.in

    :partly_sunny: The right way to check the weather

    Project mention: Building a CLI Tool with Node.js: From Zero to npm | dev.to | 2026-05-15

    // 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, }; }

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. wego

    weather app for the terminal

  4. 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!

  5. image2ascii

    :foggy: Convert image to ASCII

  6. diagram

    CLI app to convert ASCII arts into hand drawn diagrams.

  7. neonmodem

    Neon Modem Overdrive (https://codeberg.org/mrus/neonmodem)

  8. ascii-movie

    Star Wars SSH + Telnet server written in Go.

    Project mention: Places to Telnet | news.ycombinator.com | 2026-01-27
  9. 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)

  10. 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)

  11. 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
  12. asciitosvg

    Create beautiful SVG renderings of ASCII diagrams.

  13. tdraw

    Draw ASCII art in terminal

  14. tcg

    Terminal cell graphics library

  15. runal

    a creative coding environment for the terminal :fireworks:

    Project mention: Show HN: Runal – A text-based creative coding environment for the terminal | news.ycombinator.com | 2025-07-02
  16. go-pic2text

    CLI application written in Go to convert jpeg to ASCII art.

  17. go-rain

    Matrix rain effect in your term like a true hacker (by gabereiser)

  18. RR-vis

    Advent of Code day 14 Full ASCII visualizer

  19. asciify

    Convert input image to ASCII string (by EVODelavega)

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Go ascii-art discussion

Log in or Post with

Go ascii-art related posts

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

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Go is
the 4th most popular programming language
based on number of references?