惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

B
Blog
Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
博客园 - 叶小钗
J
Java Code Geeks
博客园 - 聂微东
博客园 - 司徒正美
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
V
V2EX
美团技术团队
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
罗磊的独立博客
T
The Blog of Author Tim Ferriss
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
The Cloudflare Blog
Stack Overflow Blog
Stack Overflow Blog
N
Netflix TechBlog - Medium
小众软件
小众软件

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🚀 I Built DG Encoder — A Free Cloudflare Worker API for S...
Daivik Dagar · 2026-06-20 · via DEV Community

Daivik Dagar

As developers, we often need to store webhook URLs, service endpoints, configuration strings, and other values that we don't want exposed directly in frontend code.

Most solutions either require setting up a backend, paying for a service, or managing API keys.

API URL (Generate your endpoint here): https://dg-encoder.scriptsnsenses.workers.dev/

So I built DG Encoder.

A completely free, no-API-key service powered by Cloudflare Workers that lets developers store and retrieve text-based data through simple endpoints.

✨ What is DG Encoder?

DG Encoder is a lightweight API that allows you to:

  • Store any text value
  • Receive a unique ID
  • Retrieve the value later through an endpoint
  • Restrict access to specific domains
  • Edit stored entries
  • Delete stored entries
  • Use the service without API keys
  • Use the service completely free

💸 Free Forever

One of the main goals of DG Encoder is simplicity.

There are:

✅ No API keys

✅ No signup requirements

✅ No subscriptions

✅ No paid plans

✅ No complicated setup

Just open the website, encode your value, and start using it.

🔥 Why I Built It

While building web applications, I noticed that many developers need a simple way to hide values from frontend code without setting up a full backend system.

Common examples include:

  • Discord webhooks
  • Dynamic configuration values
  • Service endpoints
  • Internal URLs
  • Integration strings

DG Encoder provides a quick solution by storing those values behind randomly generated IDs.

Your application only needs the generated ID instead of the original value.

⚡ Key Features

Encode Anything

Store any string and receive a unique identifier.

{
  "id": "abc123xyz"
}

Domain Restrictions

Limit which websites can access a stored value.

For example:

example.com
myapp.pages.dev

Only approved domains can successfully use the decode endpoint.

Edit Existing Entries

Need to replace a webhook or endpoint?

Update the stored value without generating a new ID.

Delete Entries

Remove data whenever it is no longer needed.

No API Key Required

Developers can start using DG Encoder immediately.

No registration process.

No authentication setup.

No developer dashboard required.

Cloudflare-Powered

Built on Cloudflare Workers for:

  • Global performance
  • Edge execution
  • Low latency
  • High availability

🛡️ Security Notes

DG Encoder is designed as a lightweight utility and not as a replacement for enterprise secret-management platforms.

It works best for:

  • Webhooks
  • Configuration values
  • Dynamic URLs
  • Frontend integrations
  • Small-to-medium web projects

Domain restrictions add an additional layer of control by limiting where stored values can be accessed from.

💡 Example Use Cases

Discord Projects

Store webhook URLs without exposing them directly in frontend code.

SaaS Applications

Manage configuration values and service endpoints dynamically.

Internal Tools

Keep URLs and integrations organized behind generated IDs.

No-Code Platforms

Store integration endpoints and access them through simple API calls.

Frontend-Only Applications

Reduce exposure of important URLs without maintaining a dedicated backend.

🏗️ Tech Stack

  • Cloudflare Workers
  • Cloudflare KV
  • JavaScript
  • Edge Computing

🚀 Future Plans

Features I'm considering adding:

  • Expiration dates
  • Usage analytics
  • Request statistics
  • Password-protected entries
  • Team workspaces
  • Rate limiting controls
  • More advanced access rules

Limits

As a free API the API has some limits but I think they are feasible, see yourself:

  • 100,000 Requests a day
  • 30 max encodings per user (I have made encoding deletable, refer to the last line of Limits for more information)
  • Value size limit: 8,000
  • Label characters limit: 200
  • Rate Limit: 18 requests per minute
  • You can only delete encodings if they are 7 days old
  • Supports English letters, numbers, and symbols like #, @, and $. Emojis and other languages are not supported.

Endpoints

Method Endpoint Purpose
GET / Web UI
POST /encode Create a new encoding
GET /d/:id Decode stored value
GET /r/:id Redirect to stored URL
GET /mine List user's encodings
PATCH /d/:id Update allowed domains
DELETE /d/:id Delete encoding

Example of API Wiring

Example of using encode and decode endpoint
(not recommended)

// Store a webhook URL once, it is recommended to encode from website otherwise your original URL will show
const create = await fetch(
  "https://dg-encoder.scriptsnsenses.workers.dev/encode",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      value: "https://hooks.example.com/my-secret-webhook",
      label: "Orders Webhook",
      domains: ["myapp.com"]
    })
  }
);

const encoded = await create.json();

// Later, retrieve it
const decoded = await fetch(
  encoded.decodeUrl
);

const webhook = await decoded.json();

// Use the real URL
await fetch(webhook.value, {
  method: "POST",
  body: JSON.stringify({
    event: "order.created"
  })
});

Example of using only the decode endpoint {When encoded from website} (recommended)

const id = "YOUR_ENCODING_ID";

const res = await fetch(
  `https://dg-encoder.scriptsnsenses.workers.dev/d/${id}`
);

const data = await res.json();

console.log(data.value);

Other endpoints:

I. Redirect to Stored URL:

const id = "YOUR_ENCODING_ID";

window.location.href =
  `https://dg-encoder.scriptsnsenses.workers.dev/r/${id}`;


II. List Your Encodings:

const userKey = localStorage.getItem("dgUserKey");

const res = await fetch(
  "https://dg-encoder.scriptsnsenses.workers.dev/mine",
  {
    headers: {
      "X-User-Key": userKey
    }
  }
);

const data = await res.json();

console.log(data.encodings);


III. Update Allowed Domains:

const userKey = localStorage.getItem("dgUserKey");
const id = "YOUR_ENCODING_ID";

await fetch(
  `https://dg-encoder.scriptsnsenses.workers.dev/d/${id}`,
  {
    method: "PATCH",
    headers: {
      "Content-Type": "application/json",
      "X-User-Key": userKey
    },
    body: JSON.stringify({
      domains: [
        "myapp.com",
        "dashboard.myapp.com"
      ]
    })
  }
);


IV. Delete an Encoding:

const userKey = localStorage.getItem("dgUserKey");
const id = "YOUR_ENCODING_ID";

await fetch(
  `https://dg-encoder.scriptsnsenses.workers.dev/d/${id}`,
  {
    method: "DELETE",
    headers: {
      "X-User-Key": userKey
    }
  }
);

Final Thoughts

DG Encoder was created to make storing and managing text-based values as simple as possible.

The service is:

  • Free
  • No API key required
  • Fast
  • Easy to use
  • Built on Cloudflare's edge network

If you're building web applications and need a lightweight way to store webhooks, URLs, or configuration data, I'd love to hear your thoughts and suggestions.

Support Me

If you want to support me because most of my projects are free-for-all, I do not demand money I just demand your time. Let's build together !!!

To build with me join my Discord Server/Community: https://discord.gg/4ApADpxGQV

Happy coding! 🚀