
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@cdktf/hcl2json
Advanced tools
This is a WebAssembly wrapper for https://github.com/tmccombs/hcl2json
yarn add @cdktf/hcl2json
import { parse } from '@cdktf/hcl2json'
const hcl = `
variable "name" {
description = "Name to be used on all the resources as identifier"
type = string
default = ""
}
`
(async () => {
// my-filename.tf isn't relevant for the functionality, just metadata
const json = await parse('my-filename.tf', hcl)
console.log(json)
})()
// =>
{
"variable": {
"name": [
{
"default": "",
"description": "Name to be used on all the resources as identifier",
"type": "${string}"
}
]
}
}
import { convertFiles } from "@cdktf/hcl2json";
(async () => {
const json = await convertFiles("/your/terraform/code");
console.log(json);
})();
// => Unified JSON representation of all *.tf and *.tf.json files in the given directory
import { getReferencesInExpression } from "@cdktf/hcl2json";
(async () => {
const variables = await getReferencesInExpression(
"main.tf",
"This is a ${var.input} embedded",
);
console.log(variables);
})();
// => [{ value: "var.input", startPosition: 12, endPosition: 23 }]
With yarn build
a Typescript compile is triggered and a Go build with a WASM target is performed.
0.21.0
Breaking Changes
Since long-term support for Node.js 18 has ended, we updated our minimum compatible node version to 20.9.
FAQs
Transform HCL into JSON
The npm package @cdktf/hcl2json receives a total of 278,548 weekly downloads. As such, @cdktf/hcl2json popularity was classified as popular.
We found that @cdktf/hcl2json demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.