LinusU / gopher-hcl

The official HCL library, compiled to JavaScript with GopherJS
10 stars 4 forks source link

Gopher HCL

The official HCL library, compiled to JavaScript with GopherJS.

Installation

npm install --save gopher-hcl

Usage

const hcl = require('hcl')
const fs = require('fs')

const source = fs.readFileSync('test.hcl')
const result = hcl.parse(source)

console.log(result)

API

.parse(source: string | Buffer) => object

Parses the provided HCL and returns the javascript representation.