All Projects → fidelman → mokker

fidelman / mokker

Licence: MIT License
The mock does not mock you. The video: https://www.youtube.com/watch?v=gGLNJpC-Ov0

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mokker

json-server
Create a dummy REST API from a json file with zero coding in seconds
Stars: ✭ 34 (+161.54%)
Mutual labels:  json-api, mock-server, json-server
Weld
Full fake REST API generator written with Rust
Stars: ✭ 146 (+1023.08%)
Mutual labels:  mock, json-api, mock-server
json-fake-server
Simple way to create http server (node js) https://www.npmjs.com/package/test-fake-server
Stars: ✭ 15 (+15.38%)
Mutual labels:  mock, mock-server
ruby-dns-mock
DNS mock server written on 💎 Ruby. Mimic any DNS records for your test environment with fake DNS server.
Stars: ✭ 50 (+284.62%)
Mutual labels:  mock, mock-server
main
Mocks Server monorepo
Stars: ✭ 109 (+738.46%)
Mutual labels:  mock, mock-server
Openapi Mock
OpenAPI mock server with random data generation
Stars: ✭ 202 (+1453.85%)
Mutual labels:  mock, mock-server
Mockoon
Mockoon is the easiest and quickest way to run mock APIs locally. No remote deployment, no account required, open source.
Stars: ✭ 3,448 (+26423.08%)
Mutual labels:  mock, mock-server
DummyJSON
DummyJSON provides different types of REST Endpoints filled with JSON data which you can use in developing the frontend with your favorite framework and library without worrying about writing a backend.
Stars: ✭ 213 (+1538.46%)
Mutual labels:  json-api, json-server
Httpmock
HTTP mocking library for Rust.
Stars: ✭ 76 (+484.62%)
Mutual labels:  mock, mock-server
open-api-mocker
A mock server based in OpenAPI Specification
Stars: ✭ 58 (+346.15%)
Mutual labels:  mock, mock-server
Mockaco
🐵 HTTP mock server, useful to stub services and simulate dynamic API responses, leveraging ASP.NET Core features, built-in fake data generation and pure C# scripting
Stars: ✭ 213 (+1538.46%)
Mutual labels:  mock, mock-server
Killgrave
Simple way to generate mock servers written in Go
Stars: ✭ 180 (+1284.62%)
Mutual labels:  mock, mock-server
Mockinizer
An okhttp / retrofit api call mocking library
Stars: ✭ 176 (+1253.85%)
Mutual labels:  mock, mock-server
platypus
Very simple and customizable mock/echo server
Stars: ✭ 15 (+15.38%)
Mutual labels:  mock, mock-server
jsxmock
使用 JSX 来定义 Mock Server
Stars: ✭ 31 (+138.46%)
Mutual labels:  mock, mock-server
mocat
🐈 Mocat is a mocking toolbar that allows you to interactively develop and test network requests.
Stars: ✭ 27 (+107.69%)
Mutual labels:  mock, mock-server
Kakapo.js
🐦 Next generation mocking framework in Javascript
Stars: ✭ 535 (+4015.38%)
Mutual labels:  mock, mock-server
Wiremockui
Wiremock UI - Tool for creating mock servers, proxies servers and proxies servers with the option to save the data traffic from an existing API or Site.
Stars: ✭ 38 (+192.31%)
Mutual labels:  mock, mock-server
kb-proxy
kb-proxy 是一个可本地部署的、提供代理功能、接口测试管理、支持在线Mock、Host环境管理的在线工具平台。
Stars: ✭ 52 (+300%)
Mutual labels:  mock, mock-server
any-mock
A configurable mock server,help you mock APIs.
Stars: ✭ 25 (+92.31%)
Mutual labels:  mock, mock-server

Mokker

npm version

Mokker is a simple express RESTful API mock server, which also provides few methods to make your data emulating easier.

Installation

npm install --save-dev mokker
yarn add --dev mokker

Dependencies

  • body-parser
  • express
  • morgan
  • query-string
  • react-dev-utils

Usage

// server.js
const mokker = require('mokker');

const routes = [{
    method: 'get',
    url: '/api',
    json: { is: 'done' }
}];

mokker.start({ routes });
// done 😍

$ node server.js

Docs

License

This project is licensed under MIT License. See the license file for more details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].