abos

1.0.8 • Public • Published

ABOS

A better object syntax

Installation

NPM

npm install abos --save

Yarn

yarn add abos

Globally

npm install abos -g
yarn global add abos
Run
abos file.abos [--dry-run]

Require

const abos = require('abos');
abos(/* JSON HERE */); //eg. file.json or "{stringified json}" or json object

Import

import abos from 'abos';
abos(/* JSON HERE */); //eg. file.json or "{stringified json}" or json object

What does it solve?

With this module your json becomes self-conscious so you can use @top (Root of JSON), @parent (Parent of current scope) or @this (Current scope).

Demo

{
    "jsonItem1": "Hello",
    "jsonItem2": {
        "jsonItem3": "${@top.jsonItem1} W",
        "jsonItem4": "${@this.jsonItem3}or",
    },
    "jsonItem3": {
        "jsonItem4": "${@parent.jsonItem2.jsonItem4}ld"
    }
}

Resolves to

{
    "jsonItem1": "Hello",
    "jsonItem2": {
        "jsonItem3": "Hello W",
        "jsonItem4": "Hello Wor",
    },
    "jsonItem3": {
        "jsonItem4": "Hello World"
    }
}

Package Sidebar

Install

npm i abos

Weekly Downloads

0

Version

1.0.8

License

MIT

Unpacked Size

5.4 kB

Total Files

5

Last publish

Collaborators

  • dominicvonk