From Skeptic to Believer: Building Animator with Wails (and why I was SO wrong about it!)
I thought Wails was just another Electron wannabe... turns out it's actually FASTER than running in a browser! Here's how I built a sprite animation tool in just 1.5 days.
The Day I Ate My Words (and loved every bite) ๐คค
So there I was, scrolling through my usual tech feeds when I stumbled upon this article about how Wails.io is supposedly the โnext Electronโ - faster, smaller, better, yada yada yadaโฆ
My immediate reaction? ๐ โYeah sure, another framework claiming to be better than Electron lolโ
I mean, come on! How many times have we heard this story? โOh, weโre gonna revolutionize desktop apps!โ - meanwhile itโs just another wrapper around a browser engine with fancy marketing.
My defense walls went UP immediately. In my head I was like: โNo way they can do better than an embedded browserโ and โThis is probably just hype from some Go fanboys.โ
And then I tried itโฆ
*F**** HELL! IT WAS FAST! ๐
Like, REALLY fast. Not โoh itโs slightly betterโ fast - Iโm talking about โholy crap why is this smoother than running in Firefox?!โ fast.
I donโt even care about the backend part at this point (spoiler: I barely use it lol). This was just an incredibly fast way to pack ANY web application into a native one!
Easy install โ
Good boilerplate for React + TypeScript โ
Actually works as advertised โ
The Frontend Rabbit Hole ๐ณ๏ธ
Recently Iโve been playing A LOT with animations on the web - not with a game engine, but mostly with pure JS and CSS. I saw some tutorials on how to make a top-down game using ONLY JavaScript and CSS, and honestly? Iโve been obsessed.
I even made a tiny easter egg on my website - added some pixel world thingy using spritesheet I found from itch.io. Itโs probably way too hidden but hey, thatโs what makes it fun! ๐
My little pixel world easter egg - try finding it on my site!
But hereโs where it gets interestingโฆ I found out you can make sprite sheets with AI now! ๐ค
BOOM! I tried a bunch of different prompts to get good working results, experimenting with Gemini and other AI tools. But hereโs the thing - I wanted to SEE the animations, not just imagine how theyโd look.
And thatโs how this app was born! ๐ก
The Idea: An App That Actually Makes Sense
I wanted something simple: an app where you can generate HTML & CSS and GIFs from a sprite sheet.
The workflow I imagined:
- Select an image (your sprite sheet)
- Configure your grid settings
- Preview different animations from the same file
- Export them into different CSS classes
- Profit! (well, satisfaction at least ๐ )
I added some other features while I was testing the AI-generated images from Gemini and figuring out the export process.
The Build: Surprisingly Smooth!
Hereโs the crazy part - I literally copied the frontend React components from one of my other projects, dropped them into the Wails frontend, and BOOM!
Just needed to do some cleanup and figure out how to build it on GitHub Actions. Thatโs it!
Timeline breakdown:
- Frontend: ~1 day
- Backend: ~0.5 day (and Iโm not even using it much! ๐)
The app has some pretty neat features:
Core Features I Built:
- Image upload & grid detection - automatically figures out dimensions
- Advanced animation config - adjustable columns/rows, margins, manual positioning
- Multi-animation support - handle multiple animations in one sprite sheet
- Real-time preview - see your animations as you configure them
- Export madness - CSS, HTML, ZIP files, even high-quality GIFs!
- Project management - auto-save, import/export settings
The main interface - clean and functional

Real-time preview window with export options
Generated CSS and HTML - ready to copy-paste!
The Surprise: Better Than Browser Performance! ๐ฑ
And hereโs the kicker - to my surprise, it actually runs BETTER in Wails than in Firefox!
Less memory usage = faster and snappier app. I was NOT expecting that. Like, at all.
The whole thing just felt more responsive, more native. Itโs like having a web app that doesnโt feel like a web app, you know?
I donโt use the backend functions at all right now (everything happens in the frontend), but maybe Iโll move the ZIP creation and GIF generation to the Go backend later to make it even faster and more stable. But honestly? This works SO good already.
Whatโs Next? (Spoiler: AI Integration!) ๐ค
Take the app to the next stage? Maybe!
Whatโs next on my mind: integrate the image generation API directly into the app so you can generate AND animate in the same place. One-stop-shop for sprite creation and animation.
But right now I donโt really want to set up payment systems for a side project (this is just for fun!), and those API calls are NOT cheap! ๐
For now, Iโm super happy using this app to generate sprite sheets with CSS. Here are some examples Iโve been playing with:
๐ฅ Fire Animation - Perfect for game UI elements
Check out this fire animation I generated with the tool! This is exactly the kind of stuff that gets me excited about sprite animations:
Live fire animation - smooth CSS keyframes!
Generated with Animator - perfect loop, clean code!
The CSS generated is super clean too:
.sprite-row-1 {
width: 192px;
height: 172px;
animation: play-row-1 0.7s steps(7) infinite;
}
@keyframes play-row-1 {
from {
background-position: 0px 0px;
}
to {
background-position: -1344px 0px;
}
}
๐ Character Walking - Classic 8-bit style movement
โ๏ธ Attack Sequences - Combat animations for indie games
(More examples coming soon! Iโm having too much fun with this tool! ๐)
Tech Stack & Lessons Learned
Frontend:
- React 18 + TypeScript (because 2025 and weโre not animals)
- Vite for blazing fast development
- Tailwind CSS (my beloved โค๏ธ)
- Lucide React for icons
- gif.js, jszip, file-saver for the heavy lifting
Backend:
- Go with Wails framework
- Cross-platform builds (Windows, macOS, Linux)
Key takeaways:
- Donโt judge a framework by its hype - sometimes the hype is actually justified
- Wails is genuinely fast - faster than I expected, faster than browser
- Go + React is a killer combo - simple backend, powerful frontend
- Small bundle sizes matter - no Electron bloat here
- Native integration is smooth - access to OS features without the pain
Wrapping Up: From Skeptic to Fan
Look, I was wrong. Really wrong.
Wails isnโt just โanother Electron alternativeโ - itโs actually a legitimate solution for building fast, native desktop apps with web technologies.
The development experience was smooth, the performance is impressive, and the result feels genuinely native. Plus, the community and documentation are solid.
If youโre building a desktop app and considering Electron, do yourself a favor and at least TRY Wails first. You might be as pleasantly surprised as I was.
And hey, if you want to check out the Animator app, itโs open source! Feel free to poke around the code, suggest improvements, or just use it to make some cool animations.
GitHub Repo: ehsanpo/Animator
Now if youโll excuse me, I have some more AI-generated sprite sheets to animateโฆ ๐ฎ


