Socket
Socket
Sign inDemoInstall

anymock-ajax

Package Overview
Dependencies
11
Maintainers
2
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    anymock-ajax


Version published
Weekly downloads
1
Maintainers
2
Install size
947 kB
Created
Weekly downloads
 

Readme

Source

anymock-ajax

Anymock

Anymock H5 ajax 请求拦截 mock 基础库。支持 fetch 和 XMLHttpRequest。

—— 一款好用的 Anymock 平台 辅助工具

Install

npm install anymock-ajax --save-dev

Use

// NOTE: 此段插入 anymock-ajax 的代码不能被上到线上,否则后果自负!
// anymock 注入开始
import anymockAjax from 'anymock-ajax';

const config = {
  // 可在 anymock 平台复制项目 token。必选
  projectToken: 'YOUR_ANYMOCK_PROJECT_TOKEN',

  // 是否开启。可选,默认 true
  enable: true,

  // 可以指定某个接口被 mock。可选,默认所有请求均会被 mock
  // whiteList: [ '/api/apps/1' ],

  // 可以指定某个接口不被 mock。可选,默认所有请求均会被 mock
  // blackList: [ '/api/projects/1' ]
};

anymockAjax(config);
// anymock 注入结束

注意:因为使用了 window.document,故仅支持在浏览器环境下使用。

Keywords

FAQs

Last updated on 08 Apr 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc