ghostrun-cli 1.0.2 → 1.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,6 +9,8 @@
9
9
 
10
10
  GhostRun is a local-first CLI for browser automation, API testing, and load testing — all in one tool. Record a real browser flow, replay it headlessly, test REST APIs with assertions, and run VU-based load tests. No cloud. No account. Runs entirely on your machine.
11
11
 
12
+ ![GhostRun Demo](https://raw.githubusercontent.com/TechBuiltBySharan/ghostrun/master/demo/out/ghostrun-demo.gif)
13
+
12
14
  ---
13
15
 
14
16
  ## Table of Contents
@@ -209,7 +211,6 @@ ghostrun run <id|name> --session-load <name> # restore browser cookies/storage
209
211
 
210
212
  ```bash
211
213
  ghostrun flow:list # list all flows
212
- ghostrun flow:show <id|name> # show steps for a flow
213
214
  ghostrun flow:rename <id|name> <new-name> # rename a flow
214
215
  ghostrun flow:clone <id|name> # duplicate a flow
215
216
  ghostrun flow:delete <id|name> # delete a flow
@@ -225,12 +226,11 @@ ghostrun flow:from-spec <file> # create flows from an OpenAPI spec
225
226
  Named variable sets injected at run time. Perfect for dev / staging / prod.
226
227
 
227
228
  ```bash
228
- ghostrun env:create <name> [base-url] # create an environment
229
- ghostrun env:set <name> <key=value> # add or update a variable
229
+ ghostrun env:create <name> # create an environment (dev/staging/prod)
230
+ ghostrun env:set <name> <key> <value> # add or update a variable
230
231
  ghostrun env:list # list all environments
231
232
  ghostrun env:show <name> # show variables in an environment
232
233
  ghostrun env:use <name> # set as the active environment
233
- ghostrun env:delete <name> # delete an environment
234
234
  ```
235
235
 
236
236
  Reference variables in any URL, header, or body field with `{{variableName}}`. The active environment's variables are injected automatically before each run.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ghostrun-cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Browser automation + API testing + load testing in one tool. Record flows, test REST APIs, run VU-based load tests, export to k6. Entirely local.",
5
5
  "main": "ghostrun.js",
6
6
  "bin": {