Tiny Storm

Results 9 issues of Tiny Storm

### Checks - [X] I understand project setup issues should be asked on [StackOverflow](https://stackoverflow.com/questions/tagged/http-proxy-middleware) or in [GitHub Discussions](https://github.com/chimurai/http-proxy-middleware/discussions). - [X] I updated to latest `http-proxy-middleware`. ### Describe the bug (be...

awaiting response
need minimal example

这是把握智商按在地上摩擦吗?

need-more-evidence

In vite, I was trying to start a http server with following code ```javascript server: { open: true, proxy: setupProxy() } const setupProxy = () => { const backendAddr =...

I'm using springboot SseEmitter as a backend. Why the `closeEventListener` is not called when emitter is closed. On the contrary, `ErrorEventListener` is called.

useSessionStorageState无法像uselocalStorageState使用listenStorageChange跨越tab共享(文档说和localStorage用法一致) ```javascript function Counter() { const [count, setCount] = useSessionStorageState('use-session-storage-state-demo, { defaultValue: 0, listenStorageChange: true, }); return ( setCount(count! + 1)}> count: {count} setCount()}>Clear ); } ```