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

ace-mock

v2.5.3

Published

A fast and easy to use local API mock service

Downloads

27

Readme

一款前端 api mock 工具

界面预览

api

安装

$ yarn global add ace-mock
# 或
$ npm i -g ace-mock

使用

$ ace-mock [options]

示例

$ ace-mock
# 或
$ ace-mock --port=12345

执行上述命令后,就会开启 mock 服务,地址为:http://localhost:12345

更多功能(持续奇思妙想中,欢迎贡献)

1、ace-mock 支持 Mock.js 语法,如有需要,可以参考:http://mockjs.com/examples.html

示例:

{
  "list|30": [
    {
      "id": "@guid",
      "title": "@ctitle(10, 20)",
      "date": "@date('yyyy-MM-dd')"
    }
  ]
}

2、支持字段回显,语法:@request(field)

示例:

请求列表接口的时候,需要用到翻页,因为当前页数是由前端控制的,所以可以使用@request语法来回显前端发送过来的页数:

{
  "code": 200,
  "message": "ok",
  "currentPage": "@request(page)",
  "total": 50,
  "resultList|10": [
    {
      "id": "@guid",
      "title": "@ctitle(10, 20)",
      "date": "@date('yyyy-MM-dd')"
    }
  ]
}

假设接口为:POST /test

这时前端请求:curl -X POST -d page=2 http://localhost:12345/test

返回:

{
  "code": 200,
  "message": "ok",
  "currentPage": 2, <--这里被替换为请求的字段了
  "total": 50,
  "resultList": [
    //...
  ]
}

3、支持文件上传,语法:@upload()

示例,上传照片:

{
  "status": 200,
  "message": "ok",
  "result": "@upload()"
}

前端使用表单上传单张照片后会返回如下结果:

{
  "status": 200,
  "message": "ok",
  "result": "http://localhost:12345/files/file-1579452917264.jpg"
}

批量上传多张照片后会返回如下结果:

{
  "status": 200,
  "message": "ok",
  "result": [
    "http://localhost:12345/files/file-1579452927117.jpg",
    "http://localhost:12345/files/file-1579452927118.jpg",
    "http://localhost:12345/files/file-1579452927125.jpg"
  ],
}

4、模拟网络延迟,语法:"@delay": 1000,单位:ms

示例:

{
  "@delay": 1000, 
  "status": 200,
  "message": "ok",
  "result": "@upload()"
}

这样在请求该接口后,服务端将会延迟 1000 毫秒才会向前端响应结果,这样在测试慢速网络下的交互或逻辑异常是非常有帮助的。

5、模拟接口的各种状态码,比如,模拟接口异常:503 状态

{
  "@status": 503,
}

6、GET 方法的接口可以使用 HTML

示例:

html

这时,访问:http://localhost:12345/page1 就可以看到所编辑的页面了

你可以使用它来做一些测试,样式调整等,很方便。

甚至,你还可以在服务器上启动 ace-mock,就可以在线编辑网页,做一些简单的页面展示。