A configuration file format for humans. Relaxed syntax, fewer mistakes, more comments.
This is a TypeScript implementation of the Hjson format, based on the original hjson-js project. It provides full type safety and modern ES module support.
npm install hjson-ts
import Hjson from 'hjson-ts';
// Parse Hjson
const data = Hjson.parse(hjsonText);
// Convert to Hjson
const hjsonText = Hjson.stringify(data);