pipy
pipy copied to clipboard
Pipy is a programmable proxy for the cloud, edge and IoT.
## What happened Run pipy proxy with script in `sample/http`, client send requests to route `/`, `/api`, `/api/private`, `/hi`, `/home` in http/https randomly. Run several rounds of the test, and...
## What happened As subject ## Reproduce the issue 1. Download the latest version(x86) from https://flomesh.io/nightly/ 2. Start a pipy repo ``` 2022-09-20 18:27:06.088 [INF] [admin] Starting admin service... 2022-09-20...
Could I achieve HTTP response code based failovers with caching using pipy? What I mean is - Pipy receives a request and forwards it to the **primary backend** - If...
* bump node version of github actions * use node.js 20 to do GUI build test
## TLDR ```js // pipy this_file.js --reuse-port pipy().task().onStart(new Message('Turn around')).connect('127.0.0.1:8000', { bind: '127.0.0.1:1234', onState: (conn) => { if(conn.state === 'open') { conn.socket.setRawOption(1, 15, new Data([1])) } }, }).listen('127.0.0.1:1234').print() ``` The...
Try REST API in https://flomesh.io/pipy/docs/zh/operating/repo/3-api, the interface behavior is inconsistent with expectations. Repeat method: ```bash [I] user@mac ~> # a new start pipy [I] user@mac ~> curl http://localhost:6060/api/v1/repo [I] user@mac...