apimock-rs 4.4.2 → 4.4.3
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 +8 -9
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
# API Mock
|
|
1
|
+
# apimock-rs (API Mock)
|
|
2
2
|
|
|
3
|
-
## 🪄 Mock APIs easily —
|
|
3
|
+
## 🪄 Mock APIs easily — just JSON and go
|
|
4
4
|
|
|
5
|
-
If you’re building or testing APIs, this tool makes mocking painless.
|
|
5
|
+
If you’re building or testing APIs, this tool makes mocking painless. It’s super fast, efficient, and flexible when you need it to be.
|
|
6
|
+
All you have to do to start up is just use folders and JSON without any config set.
|
|
6
7
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
It’s rebuilt from the ground up in version 4. Designed to help developers of all levels.
|
|
8
|
+
- ❄️ Zero-config start.
|
|
9
|
+
- 🌬️ Fast to boot, light on memory.
|
|
10
|
+
- 🔱 File-based and rule-based matching. Scripting supported.
|
|
12
11
|
|
|
13
12
|
```sh
|
|
14
13
|
# install
|
|
@@ -39,7 +38,7 @@ For more details, **🧭 check out [the docs](https://apimokka.github.io/apimock
|
|
|
39
38
|
|
|
40
39
|
## Open-source, with care
|
|
41
40
|
|
|
42
|
-
This project is lovingly built and maintained by volunteers.
|
|
41
|
+
[This project](https://github.com/apimokka/apimock-rs) is lovingly built and maintained by volunteers.
|
|
43
42
|
We hope it helps streamline your API development.
|
|
44
43
|
Please understand that the project has its own direction — while we welcome feedback, it might not fit every edge case 🌱
|
|
45
44
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apimock-rs",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.3",
|
|
4
4
|
"description": "A developer-friendly, featherlight and functional HTTP(S) mock server built in Rust.",
|
|
5
5
|
"author": "nabbisen<nabbisen@scqr.net>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"postinstall": "node postinstall.js"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@apimock-rs/bin-linux-x64-gnu": "4.4.
|
|
23
|
-
"@apimock-rs/bin-darwin-arm64": "4.4.
|
|
24
|
-
"@apimock-rs/bin-win32-x64-msvc": "4.4.
|
|
22
|
+
"@apimock-rs/bin-linux-x64-gnu": "4.4.3",
|
|
23
|
+
"@apimock-rs/bin-darwin-arm64": "4.4.3",
|
|
24
|
+
"@apimock-rs/bin-win32-x64-msvc": "4.4.3"
|
|
25
25
|
},
|
|
26
26
|
"keywords": [
|
|
27
27
|
"api",
|