DEV Community

Landolio
Landolio

Posted on

I built 25 free tools for UK freelancers — here's what I learned

A few weeks ago, I set out to build a collection of genuinely useful tools for UK freelancers — the kind of things I wished existed when I started freelancing.

No sign-ups. No paywalls. No "enter your email first" gates. Just open-the-page-and-use-it tools.

Here's the full list, what each one does, and what I learned building them.

The tools

Tax & Money

Invoicing & Getting Paid

Making Tax Digital

Business Management

Contracts

What I learned

1. localStorage is massively underrated

Most of these tools use localStorage to save user data between sessions. No backend needed. No accounts. No GDPR headaches with storing user data on a server.

For tools like the expense tracker and client tracker, people can use them for months without ever creating an account anywhere.

2. Static HTML + vanilla JS is enough

Every tool is a single HTML file with inline CSS and vanilla JavaScript. No React. No build step. No npm. Deploys to Cloudflare Pages in seconds.

The entire site (150+ pages) deploys in under 2 seconds. Try that with Next.js.

3. The boring problems are the valuable ones

"How do I chase an overdue invoice without sounding aggressive?" isn't a sexy problem. But it's a problem that 2 million UK freelancers face regularly. The tools that solve embarrassing, awkward, or tedious problems get the most engagement.

4. Free tools are the best marketing

Every free tool is also a landing page. Someone searching "freelance tax calculator UK" finds the tool, uses it, and discovers the rest of the site. Zero ad spend required.

Tech stack

  • Hosting: Cloudflare Pages (free tier)
  • Build: None. Static HTML files.
  • JS: Vanilla. No frameworks.
  • Data: localStorage on the client side
  • Deployment: Wrangler CLI
  • SEO: Schema.org markup, IndexNow submissions

Total cost: £0.

Try them out

All tools are free at landolio.com/tools

If you're a UK freelancer or know someone who is, I'd genuinely appreciate feedback on what's useful and what's missing.


Built with AI assistance for content generation and code. Full transparency — I believe in being upfront about that.

Top comments (0)