# node-hcl **Repository Path**: mirrors_seatgeek/node-hcl ## Basic Information - **Project Name**: node-hcl - **Description**: This WebAssembly wrapper provides a convenient way to use the HCL (HashiCorp Configuration Language) library in your Node applications. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-18 - **Last Updated**: 2026-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # node-hcl This WebAssembly wrapper for https://github.com/hashicorp/hcl provides a convenient way to use the HCL (HashiCorp Configuration Language) library in Node.js. ## Usage ``` yarn add @seatgeek/node-hcl ``` ### Merge HCL content ```javascript import { merge } from "@seatgeek/node-hcl"; const a = ` variable "a" { type = string description = "Variable A" default = "a" }`; const b = ` variable "b" { type = string description = "Variable B" default = "b" }`; const result = merge(a, b); ``` Happy coding!