this post was submitted on 18 Mar 2026
0 points (NaN% liked)

Web Development

5701 readers
3 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 3 years ago
MODERATORS
 

You know those tasks that aren't complex enough to justify a dependency but annoying enough to keep reimplementing?

  • Validate an email address (syntax + MX records + disposable check)
  • Decode a JWT without installing a library
  • Look up DNS records
  • Check SSL certificate expiry
  • Generate a QR code
  • Convert between base64 and text
  • Explain a cron expression in plain English

Built a simple REST API that handles all of these. Returns JSON, works with curl, no auth needed for 50 req/day.

# Quick examples
curl http://5.78.129.127/api/email/validate/test@gmail.com
curl http://5.78.129.127/api/jwt/decode?token=eyJ...
curl http://5.78.129.127/api/dns/lookup/github.com
curl http://5.78.129.127/api/cron/explain?expr=0+9+*+*+1-5

28 endpoints total. Docs at http://5.78.129.127/api/

It's not trying to compete with Postman or anything — it's more like a swiss army knife for when you need a quick answer and don't want to install anything.

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here