Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

mmock-cli

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mmock-cli

mock server, supports mockjs and faker.js

  • 0.0.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

mmock-cli

cli tool to mock data, supports mockjs and faker.js

Usage

npm i -g mmock-cli

$ mmock //start the mock server

Options

-h  --help      show help
-v  --version   show version
-d  --domain    set mock server url domain
-p  --port      set mock server url port
    --db        set mock server db json file path
    --cors      1 is on, 0 is off, default is on, supports cors to cross domain

mock -p 8886 -d http://mock.com

Grammar

support mockjs and faker.js, you can use it alone, or mix them. support url path param, such as /:area/user/:id, yon can use @param(area), @param(id) to get path param.

example:

{
    "user|4":[{    //生成|num个如下格式名字的数据
        "id|+1": 1//数字从当前数开始后续依次加一
        "name": "@cname",    //名字为随机中文名字
        "ago|18-31": 25,    //年龄为18-28之间的随机数字
        "sex|1":["男","女"],    //性别是数组中的一个,随机的
        "job|1": ["js","css","node.js","vue"],   //工作是数组中的一个
        "email": "{{internet.email}}",  //email
        "website": "{{internet.url}}",   //url
        "area": "@param(area)" //get area param
    }]
}

Keywords

FAQs

Package last updated on 25 Aug 2021

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc