Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tuoz/ya-mock-server
Yet another mock server
https://github.com/tuoz/ya-mock-server
koa mock nodejs
Last synced: 17 days ago
JSON representation
Yet another mock server
- Host: GitHub
- URL: https://github.com/tuoz/ya-mock-server
- Owner: tuoz
- Created: 2018-03-29T08:25:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-08T08:30:10.000Z (over 6 years ago)
- Last Synced: 2024-04-26T15:03:36.867Z (9 months ago)
- Topics: koa, mock, nodejs
- Language: JavaScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Usage: see example directory.
```js
const path = require('path')
const { MockServer } = require('ya-mock-server');const mockServer = new MockServer('http://127.0.0.1:3000', path.join(__dirname, 'data', '*.mock.js'))
mockServer.start()
```