0.0.5 • Published 5 years ago

hcl2js v0.0.5

Weekly downloads
5
License
ISC
Repository
-
Last release
5 years ago

hcl to js (and js to hcl1)

npm install hcl2js

or

yarn add hcl2js

Usage

const hcl2js = require('hcl2js');

const hcl = `"output" = {
  "pet" = {
    "value" = "cat"
  }
}`;

const js = {
  "output": [
    {
      "pet": [
        {
          "value": "cat"
        }
      ]
    }
  ]
};

test('toJSON', () => {
  const rep = hcl2js.toJs(hcl);
  expect(rep).toEqual(js);
});

test('toHCL', () => {
  const rep = hcl2js.toHcl(js);
  expect(rep).toEqual(hcl);
});

Observe that the hcl is of version 1 when converting js objects to hcl

0.0.5

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago