Tagged articles
25 articles
Page 1 of 1
DeWu Technology
DeWu Technology
Sep 22, 2025 · Frontend Development

How to Build a Chrome Mock Extension with Manifest V3 for API Interception

This article walks through the design and implementation of a Chrome extension that mocks API responses by intercepting network requests using Manifest V3, covering architecture differences, core configuration, request‑blocking techniques, script injection, project structure, rule creation, whitelist management, and future enhancements.

API mockingChrome ExtensionManifest V3
0 likes · 10 min read
How to Build a Chrome Mock Extension with Manifest V3 for API Interception
Goodme Frontend Team
Goodme Frontend Team
Feb 17, 2025 · Backend Development

How Plug Revolutionizes API Capture and Mocking with AI‑Powered Automation

This article introduces Plug, a unified front‑end tool that combines non‑intrusive interface capture, flexible mocking, and large‑model assistance to streamline API development for both mini‑programs and PC, while addressing HTTPS proxy challenges and performance considerations.

API mockingBackend DevelopmentInterface Capture
0 likes · 15 min read
How Plug Revolutionizes API Capture and Mocking with AI‑Powered Automation
Test Development Learning Exchange
Test Development Learning Exchange
Mar 21, 2024 · Backend Development

Mocking API Responses with Playwright: Success, Errors, Latency, Pagination, and Conditional Logic

This article demonstrates how to use Playwright to mock various API responses—including successful login, dynamic data, network latency, pagination, HTTP errors, redirects, authentication failures, custom headers, not‑found resources, and conditional responses—by defining route handlers that fulfill requests with custom status codes, bodies, and headers.

API mockingAutomationBackend Development
0 likes · 5 min read
Mocking API Responses with Playwright: Success, Errors, Latency, Pagination, and Conditional Logic
Continuous Delivery 2.0
Continuous Delivery 2.0
Jan 12, 2024 · Backend Development

Design and Implementation of an Internal Mock Platform for Efficient Development and Testing

The article analyzes common pain points in daily development testing such as manual data preparation, backend dependency, and unstable UI automation, then evaluates existing API‑mock tools like Apifox before presenting a custom mock platform that decouples frontend from backend, supports encrypted data, selective mocking, fault simulation, and provides a visual interface for managing mock rules and recordings.

API mockingAutomationBackend Development
0 likes · 9 min read
Design and Implementation of an Internal Mock Platform for Efficient Development and Testing
FunTester
FunTester
Jun 3, 2021 · Backend Development

FunTester moco: Architecture and Feature Overview of the moco API Testing Framework

This article introduces the FunTester moco framework, summarizing its architecture, the three core components (RequestMatcher, ResponseHandler, HttpServer), detailed matching and response capabilities, and additional utilities such as runners and monitoring, providing a comprehensive guide for developers using the moco API.

API mockingBackend DevelopmentMoCo
0 likes · 7 min read
FunTester moco: Architecture and Feature Overview of the moco API Testing Framework
Top Architect
Top Architect
Oct 17, 2020 · Backend Development

Guide to Using lowcode-mock for Quick API Mocking with Koa

This article introduces lowcode-mock, a lightweight tool that forwards requests to backend without needing mock definitions or regex matching, explains installation via Yarn, demonstrates creating mock routes with Koa, generating mocks from YAPI or JSON, adding delay, handling HTTP error codes, and configuring proxy forwarding.

API mockingBackend DevelopmentKoa
0 likes · 7 min read
Guide to Using lowcode-mock for Quick API Mocking with Koa
Programmer DD
Programmer DD
Sep 23, 2020 · Backend Development

Quickly Set Up a No‑Mock, Regex‑Free API Proxy with Lowcode‑Mock

This guide shows how to install and run lowcode‑mock, create mock APIs with Koa, generate mock data from YAPI or JSON using the yapi‑code plugin, configure custom mock rules, simulate delays, handle HTTP error codes, and proxy requests to real back‑ends, all without needing regex‑based mocking.

API mockingKoaMock Server
0 likes · 6 min read
Quickly Set Up a No‑Mock, Regex‑Free API Proxy with Lowcode‑Mock
FunTester
FunTester
May 30, 2020 · Backend Development

Extending Moco API to Support Delayed Responses for Mocking Slow Endpoints

This article explains how to extend the Moco mock server with custom delay handlers so that developers can simulate API responses that take longer than five seconds, including sample usage, wrapper methods, and the full implementation of a DelayHandler class in Java.

API mockingDelay ResponseJava
0 likes · 4 min read
Extending Moco API to Support Delayed Responses for Mocking Slow Endpoints
FunTester
FunTester
May 20, 2020 · Backend Development

How to Build and Run Mock Servers with Moco: A Hands‑On Guide

This tutorial walks through creating a MocoServer instance, configuring ports and log monitors, and using the moco API to define request‑response behavior, followed by a comprehensive Java utility class that simplifies server setup, monitoring, and lifecycle management for backend testing.

API mockingAutomationBackend testing
0 likes · 5 min read
How to Build and Run Mock Servers with Moco: A Hands‑On Guide
FunTester
FunTester
May 17, 2020 · Backend Development

Moco API Mock Framework – Configuring Response Handlers (Intermediate)

This article explains how to configure response handlers in the Moco API mock framework, covering response types (string, JSON, object) and various strategies such as fixed, random, cyclic, and limited responses, and provides a comprehensive Java class with static helper methods for implementing these behaviors.

API mockingBackend testingJava
0 likes · 8 min read
Moco API Mock Framework – Configuring Response Handlers (Intermediate)
Mafengwo Technology
Mafengwo Technology
Aug 29, 2019 · Backend Development

How JARVIS Enables Seamless API Mocking and Resource Isolation for Large‑Scale Travel Services

This article describes the design and implementation of JARVIS, an internal API resource isolation system that provides configurable mock rules, environment isolation, multi‑scenario support, and real‑time logging to streamline development and testing of travel‑related supplier integrations.

API mockingConfiguration ManagementResource Isolation
0 likes · 12 min read
How JARVIS Enables Seamless API Mocking and Resource Isolation for Large‑Scale Travel Services
FunTester
FunTester
Aug 11, 2019 · Backend Development

How to Fix JSON Parameter Extraction in Moco API Mocking for POST Requests

This article explains why the default Moco example fails to extract JSON parameters from POST requests, walks through the source inspection that reveals the limitation, and provides a custom JsonExtractor implementation with Groovy helper methods to correctly match JSON payloads.

API mockingBackend testingGroovy
0 likes · 4 min read
How to Fix JSON Parameter Extraction in Moco API Mocking for POST Requests
FunTester
FunTester
Jul 17, 2019 · Backend Development

Implementing Request Rate Limiting in Moco with a Custom LimitHandler

This article explains how to extend Moco's API mocking capabilities by creating a custom LimitHandler that tracks request timestamps and enforces a configurable interval, providing a reusable solution for preventing rapid repeated submissions in test services.

API mockingBackendJava
0 likes · 7 min read
Implementing Request Rate Limiting in Moco with a Custom LimitHandler
FunTester
FunTester
Jul 17, 2019 · Backend Development

Fixing Moco API POST JSON Parameter Extraction with a Custom JsonExtractor

When using Moco API for interface virtualization, the default extractor cannot handle POST requests with JSON bodies, so a custom JsonExtractor is created to read the request content, parse the JSON, and return the desired parameter value.

API mockingGroovyHttpRequestExtractor
0 likes · 4 min read
Fixing Moco API POST JSON Parameter Extraction with a Custom JsonExtractor
FunTester
FunTester
Jul 9, 2019 · Backend Development

Mocking POST JSON Requests with Moco: A Custom JsonExtractor Guide

When using Moco API for request virtualization, the default extractor cannot handle POST JSON bodies, so this article shows how to implement a custom JsonExtractor in Java and use Groovy matchers to verify JSON parameters effectively.

API mockingGroovyJSON
0 likes · 5 min read
Mocking POST JSON Requests with Moco: A Custom JsonExtractor Guide
Youzan Coder
Youzan Coder
Aug 10, 2018 · Frontend Development

ZanProxy: A Node.js Proxy Server for Frontend Development Efficiency

ZanProxy is a Node.js‑based proxy server that lets frontend developers debug, switch environments instantly, mock APIs, share forwarding rules across teams, monitor requests—including mobile devices—and extend functionality with plugins, all without altering system hosts files or embedding code, thereby streamlining development workflows.

API mockingHost SwitchingProxy server
0 likes · 6 min read
ZanProxy: A Node.js Proxy Server for Frontend Development Efficiency
Test Development Learning Exchange
Test Development Learning Exchange
Aug 8, 2018 · Backend Development

Using Charles Proxy to Modify API Response Values with Map Remote, Map Local, and Rewrite

This article explains how to use Charles Proxy's Map Remote, Map Local, and Rewrite features to alter server responses for client testing, mock data, pagination, and special data handling, providing step-by-step instructions with screenshots for redirecting requests to other URLs, local files, or applying regex replacements.

API mockingBackend DevelopmentCharles Proxy
0 likes · 3 min read
Using Charles Proxy to Modify API Response Values with Map Remote, Map Local, and Rewrite