nowfound

Alternatives

Products that do what AllinOneDecoder does

All-in-one web utility platform for text and data conversion

  1. 1TP

    2019 · secretgeek.github.io

  2. 2CA

    Hey HN, we built a Chrome Extension (https://www.magicpatterns.com/extension) that converts a snippet of any website to an isolated React component. Demo video: https://youtu.be/hutUYDkyE_A How it works: 1) Iterate through each node in the selected DOM tree, 2) For each element, find any matching CSS selectors / inline styles, 3) Use window.getComputedStyle to get the deterministic values, 4) Construct JSX It was pretty hard producing the minimal code necessary while maintaining the same visual look. To do this, we implemented things like abstracting out…

    2024 · chromewebstore.google.com

  3. 3GH

    Hey everyone! I just released v1.0.0 of gomponents last week. It's an HTML component builder in pure Go, with a DSL-like HTML syntax. It's been 4 years in the making, and makes it really easy to build HTML in your web apps.

    2024 · gomponents.com

  4. 4MP

    I have been working on this game somewhat sparsely for the past three years or so. However, it is still in a very early stage, and there is a lot of work to do. One of my friends encouraged me to post about it here, since he felt people might find interesting how I don’t use any libraries for it. The game can be played on a browser by virtue of WebAssembly. There are native ports using either MiniFB or SDL2, but you have to build those yourself. I decided to write the game in C because I feel like it is a simple language that a lot of people can understand well enough, and I didn’t think I…

    2023 · zamfofex.neocities.org

  5. 5SJ

    Hi HN! I created this lib in the need of a simple and tiny framework to easily do AJAX-style navigation / replacement of fragments in the page, in a web application. For people who don't want to use client-side-rendering and complex frameworks à la React, there are nowadays a few "HTML-over-the-wire" libraries, like HTMX, Unpoly or this super-tiny one Swap.js :) One other key thing is that no external tool is needed: no bundler, no webpack, no TypeScript compiler, no minification needed. Just write HTML, JS (+ your preferred server-side language: PHP, Python, etc.) and it works. The…

    2023 · github.com

  6. 6AN

    No gc, No goroutines, Produces small binaries while using the unmodified official go toolchain, and comes with complete Web SDK (generated from w3c/webref). We are building `pcz` to provide a reimagination of Go the language, in an effort to make it suitable for all kinds of programming tasks, and currently you can use it to build efficient web applications in Go using the generated Web SDK (as shown with the live web demo[1]). The journey is just starting, any suggestions? or any critics? [1]: https://primecitizens.github.io/livedemos/10-plat-web/

    2023 · github.com

  7. 7
    Kinase159

    A framework for building web scrapers for Chrome

    2017

  8. 81S

    I built this because I needed one place for all my dev tasks. Handles JSON/YAML/XML conversions, UUID gen, case transforms, and encoding tools. Built with Next.js/Chakra UI frontend, NGINX on a vps, Cloudflare for dns and cache. All client-side processing for privacy. What tools should I add next? Andrei

    2025 · 100.st

  9. 9MA
  10. 10PW
  11. 11

    Secure File Sharing & Privacy-First Converter Tools

    Mar 2026 · everytransfer.com

  12. 12OS

    Hey HN! I built OmniTools, a self-hosted web app that offers a collection of useful tools for everyday tasks. Think PDF manipulation,image, text utilities, and more—all in one place. Open-source & self-hosted Works fully in the browser (privacy-first) Built with React, deployed via Docker I made this because I wanted a free, self-hosted alternative to online tools that often require subscriptions. Would love feedback & ideas on what to add next! GitHub link: https://github.com/iib0011/omni-tools Demo link: https://omnitools.app Let me know what tools you want…

    2025 · omnitools.app

  13. 13
    AllPub17

    Seamless cross-publishing for creators who move fast

    Nov 2025

  14. 14IR

    I built Morph, an experimental fullstack HTML-first library for Deno, Node, and Bun. Everything returns HTML, not JSON. No React, no Vite — just plain HTML with server-side rendering. No build steps, no preprocessors, no complex configs — everything runs from a single file. Perfect for Telegram Web Apps, internal tools, simple admin panels, dashboards, or anywhere a full-blown SPA feels like overkill. Important: I built this entirely for myself — to solve my own problems. I hate complex frontend. I hate writing it. And I don’t want to waste time on it. But maybe it’ll help you too.

    2025 · github.com

  15. 15UI
  16. 16SS

    Streamlit, a Python web app framework, can run on web browsers with WebAssembly, and you can write and share its apps with this online platform. Get the Python productivity, online shareability, and data privacy safety in your data apps.

    2022 · edit.share.stlite.net

  17. 17

    JSON Formatter • Regex Tester • SQL Formatter • JWT Decoder

    May 2026

  18. 18WS
  19. 195F

    I built EveryToolkit.com — a collection of 500+ free online tools across 24+ categories, all in one clean, fast, and ad-supported site. The goal is to make small, everyday utilities accessible from one place — no popups, no clutter. You’ll find: • Developer tools (JSON, JWT, regex, base64, etc.) • Text and writing tools (word counters, formatters, case converters) • Image & PDF tools (compress, convert, merge) • Finance, health, and SEO utilities • Calculators and converters for daily use I built this to solve my own frustration of having to Google for “that one tool” every time. Would love…

    Nov 2025 · everytoolkit.com

  20. 20

    Pure Frontend Toolkit纯前端工具集

    Apr 2026 · essays4u.net

  21. 21IM

    Hi HN! I've created [UFreeTools](https://www.ufreetools.com/), a collection of developer utilities (60+ tools and growing) that's completely free, ad-free, and runs entirely in the browser. No data leaves your device - everything is processed locally. ## Background As a developer, I found myself constantly searching for simple utilities like JSON formatters, UUID generators, and color pickers. Most existing options were cluttered with ads, required sign-ups, or sent data to servers. I wanted clean, fast tools that respected privacy. So I built UFreeTools as a modern SPA using…

    2025 · ufreetools.com

  22. 22GI

    Hey, I'm Nenad. I built Grafly (https://grafly.io) because I kept reaching for different tools just to sketch out a quick architecture diagram and hating either the UI, color schemes, usage patterns or that I had to log in, or have my doodles stored on someone's server. It's a React/React Flow app that runs entirely in the browser meaning that everything saves to localStorage, nothing leaves your machine. You get basic shapes, AWS/GCP icons, edges with waypoints and shareable URLs that encode the whole diagram in the query string (no backend, just LZ compression). There…

    Mar 2026 · grafly.io

  23. 23IB

    Hey everyone! Some time ago I was analyzing why React apps are so hard to optimize, and came to a conclusion that the lack of atomic updates is the culprit. I made an experimental library which basically updates everything in place directly in HTML. At some point I became aware that Solidjs exists, which is a very similar idea, but at the end of the day I realized my approach to API is quite different and warrants the existence of my library (my state primitive allows selector subscriptions, array iterators return a state primitive with the element, allowing to never re-render the whole…

    2024 · github.com

  24. 24

    The free all-in-one converter that works offline

    Jun 2026 · convertgo.app

Ranked by how close each launch is in meaning, then by votes. Refine with a description →