Skip to content
/ pazza Public

Parser combinators library which works on browsers, Deno and Node.js.

License

Notifications You must be signed in to change notification settings

g-plane/pazza

Repository files navigation

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

About

Parser combinators library which works on browsers, Deno and Node.js.

Resources

License

Stars

Watchers

Forks