Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 1.01 KB

README.md

File metadata and controls

61 lines (37 loc) · 1.01 KB

pazza

Working in progress.

Parser combinators library designed for Deno, but also works on browsers and Node.js.

Install

Deno

pazza is published at deno.land and nest.land.

Using deno.land:

import { /**/ } from "https://deno.land/x/pazza/mod.ts";

// or with specified version

import { /**/ } from "https://deno.land/x/pazza@v0.1.0/mod.ts";

Using nest.land:

// please specifiy a proper version
import { /**/ } from "https://x.nest.land/pazza@0.1.0/mod.ts";

Node.js

Install with npm:

npm i pazza

Then, in your project:

const { /**/ } = require("pazza");

Browsers

Suppose your target browsers support ES Module:

import { /**/ } from "https://cdn.jsdelivr.net/npm/pazza/dist/es/index.js";

Documentation

View at doc.deno.land

License

MIT License

2020-present (c) Pig Fang