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.
- package/README.md +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,16 +4,15 @@
|
|
|
4
4
|

|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
_Mockaton_ is an HTTP mock server
|
|
8
|
-
development and testing experience.
|
|
7
|
+
_Mockaton_ is an HTTP mock server developing and testing frontend apps.
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
|
|
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
|
|
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