mockaton 8.2.15 → 8.2.17

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 +5 -6
  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 a mock server for 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. Mockaton 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
@@ -23,7 +22,7 @@ can create a TAR of your requests following that convention.
23
22
  ## Dashboard UI
24
23
 
25
24
  In the dashboard, you can manually select which mock variant to serve for a particular
26
- route. This is useful for testing different scenarios without changing code or the database state.
25
+ route. So you can test different scenarios without changing code or the database state.
27
26
 
28
27
  <picture>
29
28
  <source media="(prefers-color-scheme: light)" srcset="./README-dashboard-light.png">
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.17",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",