ezjww
v0.2.0
Published
JWW parser and DXF converter for TypeScript, powered by Rust WebAssembly.
Maintainers
Readme
ezjww
TypeScript bindings for the Rust ezjww JWW parser and DXF converter.
import { readFileSync } from "node:fs";
import { readDocument, toDxfString } from "ezjww";
const data = readFileSync("sample.jww");
const document = readDocument(data);
const dxf = toDxfString(data, { explodeInserts: true });Browser example
cd packages/ezjww
pnpm install
pnpm run example:browser:devThe example app parses a dropped .jww file in the browser and shows summary
counts, layers, a simple drawing preview, and JSON output.
