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

推荐订阅源

WordPress大学
WordPress大学
G
Google Developers Blog
小众软件
小众软件
V
V2EX
月光博客
月光博客
腾讯CDC
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理
B
Blog RSS Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
D
Docker
M
MIT News - Artificial intelligence
Google DeepMind News
Google DeepMind News
N
Netflix TechBlog - Medium
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
I
InfoQ
MongoDB | Blog
MongoDB | Blog
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI

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
How to Dynamically Rewrite fetch and XHR Requests/Respons...
Akhilesh Maurya · 2026-06-03 · via DEV Community

If you work on frontend apps long enough, you eventually hit the same problem:

  • the UI depends on backend data
  • you need to test a new scenario
  • you do not want to wait for backend changes
  • local mocks or proxy setup feel too heavy for a quick check

For simple cases, static mocking works.

But in real apps, the response often needs to be changed dynamically. Maybe you only want to modify one field when another field has a certain value. Maybe you want to transform a request body before it is sent. Maybe you want to test conditional frontend behavior without replacing the entire payload.

That is where Receptor becomes useful.

Receptor is a Chrome extension that lets you intercept and modify fetch and XMLHttpRequest traffic directly in the browser. It supports rule-based request/response editing, and more importantly, it supports scripting for dynamic request and response manipulation.

Why Scripting Matters

Most request/response tools are limited to fixed replacements.

That works for:

  • replace this response body
  • add this header
  • change this status code

But many real testing cases are conditional:

  • if minimumAmount is "1000", set defaultAmount to "1500"
  • if the request contains a certain field, inject another field
  • keep most of the real response, but modify only one nested value
  • simulate backend logic without changing the backend

That is exactly the gap scripting fills.

What Receptor Gives You

With Receptor, you can:

  • intercept fetch and XHR traffic
  • modify request headers, params, and body
  • modify response headers, body, and status
  • simulate delays
  • organize rules with scenarios and groups
  • run custom request scripts
  • run custom response scripts

The scripting feature is what makes it especially flexible.

Request Script Example

Suppose your frontend sends:

{
  "plan": "basic",
  "amount": 1000
}

Enter fullscreen mode Exit fullscreen mode

You want to rewrite the outgoing request before it leaves the browser.

const body = input.json || {};

if (body.plan === "basic") {
  body.amount = 1500;
}

return {
  url: input.url,
  method: input.method,
  headers: { ...input.headers },
  body: JSON.stringify(body),
};

Enter fullscreen mode Exit fullscreen mode

This lets you test how the backend or frontend behaves with a different request payload without touching application code.

Response Script Example

Suppose the API returns:

{
  "minimumAmount": "1000",
  "defaultAmount": "1000"
}

Enter fullscreen mode Exit fullscreen mode

You want to simulate a different backend rule.

const resBody = JSON.parse(input.body);
resBody.defaultAmount = resBody.minimumAmount === "1000" ? "1500" : "2200";

return {
  status: input.status,
  statusText: input.statusText,
  headers: { ...input.headers },
  body: JSON.stringify(resBody),
};

Enter fullscreen mode Exit fullscreen mode

Now the frontend receives a modified response, even though the real server returned something else.

Important Detail: input.body vs input.json

This is the main thing to understand when writing scripts.

  • input.body is the raw payload as text
  • input.json is the parsed JSON object when the payload is JSON

If you are working with JSON, these two patterns are usually safest.

Use parsed JSON directly:

const data = input.json || {};

return {
  status: input.status,
  statusText: input.statusText,
  headers: { ...input.headers },
  body: JSON.stringify({
    ...data,
    featureEnabled: true,
  }),
};

Enter fullscreen mode Exit fullscreen mode

Or parse the raw body yourself:

const data = JSON.parse(input.body);

data.featureEnabled = true;

return {
  status: input.status,
  statusText: input.statusText,
  headers: { ...input.headers },
  body: JSON.stringify(data),
};

Enter fullscreen mode Exit fullscreen mode

If the payload is plain text instead of JSON, use input.body.

How To Use It

1. Install Receptor

2. Create a Rule

Match the request by URL and optionally by method, headers, params, or body.

3. Choose an Action

Pick either:

  • Run Request Script
  • Run Response Script

4. Write Your Script

Start small. Preserve most fields and change only what you need.

5. Reload the Page

Your app now runs against the modified request/response flow.

Practical Use Cases

Test Pricing Logic

Change amounts, limits, or eligibility fields in responses.

Simulate Edge Cases

Inject unexpected values, missing fields, or alternate payloads.

Validate Feature Flags

Turn flags on or off in the response without backend changes.

Reproduce Bugs

Replay a problematic payload shape directly in the browser.

Test Request Shaping

Change outgoing request bodies or headers before they hit the server.

Why This Is Useful in Frontend Development

This saves time because you do not need to:

  • modify backend code
  • spin up a mock server
  • configure a reverse proxy
  • wait for staging changes
  • maintain large static mock payloads

Instead, you can test directly where your app already runs: inside the browser.

Final Thoughts

If you only need simple overrides, many tools can do that.

If you want dynamic request/response manipulation with custom logic, Receptor is much more interesting.

That scripting support is what makes it genuinely useful for frontend debugging, QA, and API testing.