@caido/httpql
v0.8.0
Published
Parser for the HTTPQL language
Downloads
235
Keywords
Readme
HTTPQL
This is the JS parser for the HTTPQL language.
import { deserialize, serialize } from "@caido/httpql";
const parsed = deserialize('req.ext.cont:"HELLO"');
console.log(parsed);
const result = serialize(parsed);
console.log(result);