@caido/streamql
v0.3.0
Published
Parser for the StreamQL language
Keywords
Readme
StreamQL
This is the JS parser for the StreamQL language.
import { deserialize, serialize } from "@caido/streamql";
const parsed = deserialize('ws.raw.cont:"HELLO"');
console.log(parsed);
const result = serialize(parsed);
console.log(result);