@testsmith/api-spector 0.0.2 → 0.0.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/package.json +2 -2
- package/readme.md +4 -4
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testsmith/api-spector",
|
|
3
3
|
"productName": "api Spector",
|
|
4
|
-
"version": "0.0.
|
|
5
|
-
"description": "Local-first API testing tool
|
|
4
|
+
"version": "0.0.3",
|
|
5
|
+
"description": "Local-first API testing tool to inspect, test and mock APIs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/testsmith-io/api-spector"
|
package/readme.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# api Spector
|
|
2
2
|
|
|
3
|
-
Local-first API testing tool. Inspect, test and mock APIs
|
|
3
|
+
Local-first API testing tool. Inspect, test and mock APIs. Secrets stay on your machine.
|
|
4
4
|
|
|
5
5
|
- GUI built with Electron + React
|
|
6
6
|
- CLI for running tests and mock servers in CI/CD pipelines
|
|
@@ -57,7 +57,7 @@ Keeps running until `Ctrl+C`.
|
|
|
57
57
|
|
|
58
58
|
## Workspaces
|
|
59
59
|
|
|
60
|
-
A workspace is a `.spector` file that references your collections, environments and mock servers. Safe to commit to Git
|
|
60
|
+
A workspace is a `.spector` file that references your collections, environments and mock servers. Safe to commit to Git. Secrets are encrypted, not stored in plain text.
|
|
61
61
|
|
|
62
62
|
```
|
|
63
63
|
my-project/
|
|
@@ -78,12 +78,12 @@ Secret variables are encrypted with AES-256-GCM using a master password. Set `AP
|
|
|
78
78
|
export API_SPECTOR_MASTER_KEY="your-password"
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
-
**Windows
|
|
81
|
+
**Windows (PowerShell profile):**
|
|
82
82
|
```powershell
|
|
83
83
|
$env:API_SPECTOR_MASTER_KEY = "your-password"
|
|
84
84
|
```
|
|
85
85
|
|
|
86
|
-
**Windows
|
|
86
|
+
**Windows (Command Prompt, permanent):**
|
|
87
87
|
```cmd
|
|
88
88
|
setx API_SPECTOR_MASTER_KEY "your-password"
|
|
89
89
|
```
|