Welcome to WAVE, the enterprise streaming platform.
Prerequisites: You’ll need Node.js 22+ and a WAVE account to get started.
npm install @wave/sdkimport { Wave } from "@wave/sdk";
const wave = new Wave({ apiKey: "your-key" });const stream = await wave.pipeline.create({ title: "My Stream" });
console.log(`Stream created: ${stream.id}`);import { Wave } from "@wave/sdk";
const wave = new Wave({ apiKey: "your-key" });
const stream = await wave.pipeline.create({ title: "My Stream" });Check our API Reference for the full list of endpoints.