npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mini-mock-middleware

v1.0.9

Published

一个用于本地mock假数据的express中间件

Downloads

1

Readme

说明

此express中间件有两个作用

  1. 本地mock数据
  2. 代理接口到远端

基本使用

const express = require('express');
const mockMiddleware = require('@nfe/mock-middleware');

const app = express();
app.use(mockMiddleware({
    'map': 'mock-map.js',  // 指定一个map文件,用于映射接口
    'delay': 0             // 指定接口延迟时间,单位是 ms,默认值为 1000, 目的为为了模拟接口的等待过程
}));

比如, mock-map.js的结构类似这样子:

let remote = 'http://localhost:3004';  // 定义远端接口的host

module.exports = {
    // test远端接口
    // '/api/test': remote + '/api/test',

    // test本地mock
    '/api/test': 'mock/test1.json',

    // test1本地mock
    '/api/test1': 'mock/test1.json',

    // test2本地mock
    '/api/test2': 'mock/test2.json',

    // test3代理到远端接口
    '/api/test3': remote + '/api/test4'
};

这代表

  1. 当调用接口/api/test的时候,返回mock/test1.json里面的数据。
  2. 当调用接口/api/test1的时候,返回mock/test1.json里面的数据。
  3. 当调用接口/api/test2的时候,根据参数,返回mock/test2.json里面的数据。
  4. 当调用接口/api/test3的时候(post方法),返回远端接口http://localhost:3004/api/test3里面的数据。

高级使用

有些时候,同一个接口,传递不同参数的时候,返回的结果也是不同的,最典型的就是分页, 那我们如何模拟这种区别呢?

有两种方式

  1. 配置 test.json 里面的数据结构
  2. 在 map.js 中定义假路径的时候,把参数直接带上。

先说第一种方法。

配置 test.json

1. 忽略所有参数

当你希望不管传什么参数,接口返回永远都是一样的话,那么test1.json必须是有一个code字段,如下所示:

{
    "code":0,
    "data":"data1"
}

程序判断逻辑:当test1.json中包含code字段,则忽略所有参数。

2. 需要参数判断

在需要参数进行判断的时候,我们要考虑两个问题。

  1. 是否区分url上的参数和body的参数?
  2. 参数传多了或者传少了,如何匹配?

第一个问题,程序会忽略参数到底上在url还是在body上,直接将所有的参数合并成一个对象, 且body里面的字段会覆盖url的同名字段。

第二个问题,只要传递参数的集合包含定义的假的参数集合,就意味着命中规则,且只会命中最先出现的那一条。 如果找不到匹配的规则,则返回空对象。

举个例子,假如test2.json结构如下:

{
    "page=1": {
        "code": 0,
        "data": [
            1,
            2,
            3
        ]
    },
    "page=2": {
        "code": 0,
        "data": [
            4,
            5,
            6
        ]
    },
    "page=3&name=liangshaofeng": {
        "code": 0,
        "data": [
            7,
            8,
            9
        ]
    }
}

请求url(包括参数)与返回结果之间的对应关系为:

url: /api/test2?page=1
res: {
  "code": 0,
   "data": [
       1,
       2,
       3
   ]
}
url: /api/test2?page=2
res: {
  "code": 0,
  "data": [
      4,
      5,
      6
  ]
}
url: /api/test2?page=3
res: {}

配置 map.js

第一种方法的优点在于只需要配置一个假路径,缺点在于当一个接口返回的 json 本来就很大的时候, 多个 json 叠加在一起,会使得 json 文件变得非常庞大,于是有了这第二种方法。

如下所示:

// map.js
'/api/test4?page=1': 'mock/test4-1.json',
'/api/test4?page=2': 'mock/test4-2.json',
'/api/test4?page=2&test=3': 'mock/test4-3.json'

在假设 /api/test4 是一个分页的接口, 我们便可以在 map.js 直接把 page 参数带上,以重定向到不同的 json 文件。 参数的匹配顺序与规则与第一种方法的实现原理相同。