0.2.0 • Published 5 years ago

gopher-hcl v0.2.0

Weekly downloads
20
License
MIT
Repository
github
Last release
5 years ago

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.