An open API service indexing awesome lists of open source software.

https://github.com/bahrus/be-micromanaging


https://github.com/bahrus/be-micromanaging

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# be-micromanaging [TODO]

## Example 1

```html

": {"zipCode": ":string"}

},
"number.intl": { //optional
"style": "currency", "currency": "EUR"
},
"itemDivider": "span", //optional,
"labelTag": "span" //optional -- inherits from
}'>

```

Have to avoid xss

Generates:

```html



Person's age is:


Date of birth:


Last name:



```

Uses be-value-added when needed

Optionally, add model values:

## Example 2

```html

": {"zipCode": "12321"}

},
"number.intl": { //optional
"style": "currency", "currency": "EUR"
},
"itemDivider": "span", //optional,
"labelTag": "span" //optional -- inherits from
}'>

```

Generates:

Generates:

```html



Person's age is: 54


Date of birth:


Last name: Milei



```

can update via oDiv.beEnhanced.by.beMicromanaging.model.age = 23

or if using trans-render notation:

"+beMicromanaging.model.age"

## Example 3

```html
": {"zipCode": "12321"}

},
"number.intl": { //optional
"style": "currency", "currency": "EUR"
},
"itemDivider": "", //optional,
"labelTag": "span" //optional -- inherits from
}'>
```

generates:

```html


Person's age is: 54


Date of birth:


Last name: Milei

```

Problem -- meta gets booted out of table most rudely.

So solution:

```html
": {"zipCode": "12321"}
},


},
"number.intl": { //optional
"style": "currency", "currency": "EUR"
},
"itemDivider": "", //optional,
"labelTag": "span" //optional -- inherits from
}'>
```

generates:

```html


Person's age is: 54


Date of birth:


Last name: Milei

```