Eustia JSON Transpiler

raw JSON →
0.0.2 verified Fri May 01 auth: no javascript maintenance

Eustia json transpiler is a small utility for transforming JSON files using Eusta's custom JSON format. Version 0.0.2 is the latest stable release, with no active maintenance. It is specific to the Eusta ecosystem and not widely used. Differentiator: lightweight JSON transformation for Eusta-based projects.

error Cannot find module 'eustia-json'
cause Package not installed or typo in package name.
fix
Run 'npm install eustia-json' or check the package name.
gotcha Package is very niche and likely not maintained; version 0.0.2 is the only release.
fix Consider using a more mainstream JSON transformation library.
npm install eustia-json
yarn add eustia-json
pnpm add eustia-json

Transforms a JSON object using the default export function.

import eustiaJson from 'eustia-json';

const input = {
  "key": "value"
};
const result = eustiaJson(input);
console.log(result);