How to Solve Lack of Native WebSocket Support in Node.js 20 for Supabase Tools Using Pipedream Connect?

This topic was automatically generated from Slack. You can find the original thread here.

Pipedream Connect output for all Supabase tools (relatively new):

Node.js 20 detected without native WebSocket support.

Suggested solution: For Node.js < 22, install "ws" package and provide it via the transport option:
import ws from "ws"
new RealtimeClient(url, { transport: ws })

This should be fixed now