gopher-hcl
v0.2.0
Published
The official HCL library, compiled to JavaScript with GopherJS.
Downloads
79
Readme
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.