mockaton 8.2.15 → 8.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +4 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,16 +4,15 @@
4
4
  ![NPM Version](https://img.shields.io/npm/l/mockaton)
5
5
 
6
6
 
7
- _Mockaton_ is an HTTP mock server for improving the frontend
8
- development and testing experience.
7
+ _Mockaton_ is an HTTP mock server developing and testing frontend apps.
9
8
 
10
- In contrast to other solutions, you don’t need to write code for wiring your mocks.
11
- Instead, Mockaton scans a given directory for filenames following a convention similar to the
9
+ With Mockaton, you don’t need to write code for wiring your mocks. Instead, it
10
+ scans a given directory for filenames following a convention similar to the
12
11
  URL paths. For example, the following file will be served on `/api/user/1234`
13
12
  ```
14
13
  my-mocks-dir/api/user/[user-id].GET.200.json
15
14
  ```
16
- Also, you don’t need to mock all your APIs. It can request from your backend
15
+ Also, you don’t need to mock everything. It can request from your backend
17
16
  the routes you don’t have mocks for. See `Config.proxyFallback` below.
18
17
 
19
18
  By the way, [this browser
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "A deterministic server-side for developing and testing frontend clients",
4
4
  "type": "module",
5
- "version": "8.2.15",
5
+ "version": "8.2.16",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",