rest-pipeline-js 1.3.7 → 1.3.8
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 +15 -0
- package/package.json +3 -2
- package/src/vue-demo/demo.css +768 -38
- package/src/vue-demo/demo.vue +558 -109
- package/src/vue-demo/index.html +21 -12
- package/new.md +0 -501
package/README.md
CHANGED
|
@@ -850,6 +850,21 @@ import {
|
|
|
850
850
|
|
|
851
851
|
---
|
|
852
852
|
|
|
853
|
+
## Vue Demo
|
|
854
|
+
|
|
855
|
+
A live interactive demo of the pipeline running against a real flight-search API — 4 sequential stages: airport lookup, availability, ancillary services, and seat map.
|
|
856
|
+
|
|
857
|
+
```bash
|
|
858
|
+
git clone https://github.com/macrulezru/pipeline-js.git
|
|
859
|
+
cd pipeline-js
|
|
860
|
+
npm install
|
|
861
|
+
npm run demo:vue
|
|
862
|
+
```
|
|
863
|
+
|
|
864
|
+
Opens at `http://localhost:3000` (or the next available port). Click **Run Pipeline** to execute all stages and watch results appear in real time. A boarding pass is rendered when all stages succeed.
|
|
865
|
+
|
|
866
|
+
---
|
|
867
|
+
|
|
853
868
|
## Development
|
|
854
869
|
|
|
855
870
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rest-pipeline-js",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.8",
|
|
4
4
|
"description": "Pipeline Orchestration Utilities for JavaScript REST API Clients",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"react-dom": "^19.2.3"
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
|
-
"axios": "^1.13.2"
|
|
71
|
+
"axios": "^1.13.2",
|
|
72
|
+
"prismjs": "^1.30.0"
|
|
72
73
|
}
|
|
73
74
|
}
|