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

genji4mock

v1.0.0

Published

this is a repo for mocking easily

Downloads

3

Readme

genji4mock


目的

本地 Mock 一般有以下几种:

  1. 写死在代码中。
  2. 标识需要 Mock 的接口,在网络请求时拦截相应接口,返回在本地文件夹中的 Mock 数据。
  3. 使用 Charles 拦截请求
  4. 使用诸如 YAPI 的平台进行 Mock

上面的几种情况,第一种和第二种是类似的。第二种方式相对于第一种方式耦合性更弱一些,数据与代码分离的也更好一些,但是仍然需要通过一个标识位设置。并且还有以下的缺点:

  1. 将 Mock 数据等无用数据和文件保存在项目中。同时 Mock 的接口多了也不好维护。
  2. 需要 Mock 的接口需要特别设置标识位,无法做到正真的解耦。
  3. Mock 接口容易误提交,影响他人开发以及测试。
  4. 网略层需要针对 Mock 标识做特定处理,污染网络层。

第三种方式虽然和代码无耦合,但是使用起来比较麻烦。

第四种方式创建了一个 Mock 平台,功能大而全,也完全没有耦合。但是很多时候我只是想要快速的针对某个接口搞出来几个有针对性的数据,不想要整个环境都是 Mock 的,也不需要什么 Mockjs。另外,很多时候,Mock 数据的统一维护也是问题。

genji4mock 正是针对第四种 Mock 的缺点的补充。使用 genji4mock 可以快速创建一个需要 mock 的接口,其余接口走正常的转发流程。

开始

准备

部署这个项目需要一些预先准备:

  1. 安装 mysql
  2. 安装 nodejs
  3. 通过 nodejs 全局安装pm2
npm install pm2 -g

启动

在命令行的当前目录下:

npm start

使用介绍

界面介绍

打开相应页面,因为是针对每个人的 mock,所以需要先进行注册和登录。登录后的界面如下:

左侧上方可以搜索接口,当搜索不到的时候可以快速在右侧添加。中间是 Mock 接口列表,可以单独设置 Mock 接口的开关。底部是三个批量操作,可以批量添加接口,批量关闭接口以及批量删除接口。

右侧显示 Mock 接口数据,可以快速保存添加和删除。对于 JSON 串,可以进行格式化,显示更直观的 JSON 数据。保存的时候可以直接通过 ctrl+s 保存,不用操作使用鼠标。右上角是是否使用 YAPI 的开关,可以控制接口转发的时候是使用正式数据还是 YAPI 中提供的 Mock 环境的数据。

点击用户名显示设置域名的界面。此处设置转发的域名:

项目接入

项目使用上需要加入一个 Mock 环境。需要注意一点,由于这不是那种平台式的 Mock,而是针对每个人的 Mock,因此需要进行鉴权。做法是在原本的域名后面拼上用户信息。

即如果原本本地服务为 10.26.5.145:3010,你注册的用户名为 zachary 那么你实际的 Mock 环境的地址就是 http://10.26.5.145:3010/zachary。