mokia
一个通过编写代码构建假模型来生成假数据的开源工具,便于前端mock接口测试。支持TypeScript,模型可复用,集成方便。
• Copy the embed code to showcase this product on your website
• Share on X to spread the word about this amazing tool
名称:mokia地址:https://github.com/varHarrie/mokia描述:通过编写代码方式构建`假模型`,用于生成`假数据`,便于前端mock接口测试,`假模型`可以很方便在不同接口中复用。特点:- 非常方便集成到现有项目- 支持TypeScript- 模型高度复用- 丰富的假数据生成器使用方法:1.安装npm install mokia --save-dev````javascriptimport { decorators, mock, PORT, ServerConfig } from 'mokia'class User { decorators.uuid() id: string decorators.fullName() name: string}const config: ServerConfig = { [PORT]: 3000, 'GET /users': () => { return { users: mock.array(User, 0, 5) } }, 'GET /users/:id': () => { return mock(User) }}export default config```2.配置scripts:```json"scripts": { "mock": "mokia mock.ts",}```3.运行```bashnpm run mock```4.浏览器打开http://localhost:3000/users/5`,返回json:```json{ "id": "4fvke82k", "name": "张三"}```