HackerTrans
トップ新着トレンドコメント過去質問紹介求人

iromanika

no profile record

投稿

Show HN: Feato – Real-time feature flags without polling

3 ポイント·投稿者 iromanika·6 か月前·2 コメント

コメント

iromanika
·6 か月前·議論
Good question, and just to clarify the context.

Next.js / Vercel would typically be on the consumer side. Feato doesn’t rely on any server-side streaming in the client’s app.

The browser opens an SSE connection (via EventSource) directly to the Feato backend, which runs as a long-lived service. Next.js is only used to serve the application and bootstrap the client.

Some platforms impose practical limits around long-lived connections, even though SSE itself is just standard HTTP. Feato doesn’t depend on any platform-specific behavior here — it uses the browser’s native EventSource over HTTP directly to our backend.

Because of that, the client framework or hosting environment (Next.js on Vercel, CRA, Angular, etc.) doesn’t really affect the real-time channel.