• Stars
    star
    5
  • Rank 2,774,880 (Top 57 %)
  • Language
    PowerShell
  • License
    MIT License
  • Created over 4 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple powershell module for conversion between HJSON and JSON.

hjson-powershell psgallery psgallery

Simple powershell module for conversion between HJSON and JSON. It't wrapper of hjson-cs. You can found more information about hjson at https://hjson.org/.

Instalation

Install-Module -Name HJSON

Usage

Convert Json to HJson

$hjsonString = ConvertTo-HJson -Path "C:\someJsonFile.json"

Convert HJson to Json

$jsonString = ConvertFrom-HJson -Path "C:\someHJsonFile.hjson"