@sk337/pkl
v1.1.0
Published
> a basic CLI wrapper for pkl-lang
Downloads
4
Maintainers
Readme
PKL-js
a basic CLI wrapper for pkl-lang
installation
npm i @sk337/pkl
or build locally with
- Clone repository with
git clone https://github.com/sk337/pkl-js
- Install Dependencies
npm install
- Build Code
npm run build
- Install the package
npm i ./
ornpm i ${path to the repository}
Usage
import { Parser } from "@sk337/pkl";
const parser = new Parser("file.pkl");
const out = await parser.parse();
console.log(out);