Package Exports
- confbox
- confbox/json5
- confbox/jsonc
- confbox/toml
- confbox/yaml
Readme
confbox
Config parsers for:
✅ JSONC (with jsonc-parser
)
With perfect bundling:
✨ Types exported out of the box
✨ Zero config and compact redistribution
✨ Dual ESM/CJS build
✨ Consistent and tested API
✨ Handpicked best libraries (bundle+perf)
[!NOTE] Use unjs/c12 for a full featured configuration loader!
Usage
Install package:
# ✨ Auto-detect
npx nypm i confbox
# npm
npm install confbox
# yarn
yarn add confbox
# pnpm
pnpm install confbox
# bun
bun install confbox
Import:
// ESM (tree-shakable)
import {
parseJSON5,
parseJSONC,
parseTOML,
parseYAML,
stringifyYAML,
} from "confbox";
// Using individual builds
import { parseYAML, stringifyYAML } from "confbox/yaml";
import { parseTOML } from "confbox/toml";
import { parseJSON5 } from "confbox/json5";
import { parseJSONC } from "confbox/jsonc";
// CommonJS
const {
parseJSON5,
parseJSONC,
parseTOML,
parseYAML,
stringifyYAML,
} = require("confbox");
parseJSON5(text, options?)
Converts a JSON5 string into an object.
parseJSONC(text, options?)
Converts a JSONC string into an object.
parseTOML(text)
Converts a TOML string into an object.
parseYAML(text, options?)
Converts a YAML string into an object.
stringifyYAML(value, options?)
Converts a JavaScript value to a YAML string.
Development
- Clone this repository
- Install the latest LTS version of Node.js
- Enable Corepack using
corepack enable
- Install dependencies using
pnpm install
- Run interactive tests using
pnpm dev
License
Made with 💛
Published under MIT License.