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

https://github.com/coolreader18/stdio.js

A simple framework to create simple input/output functions.
https://github.com/coolreader18/stdio.js

Last synced: 10 months ago
JSON representation

A simple framework to create simple input/output functions.

Awesome Lists containing this project

README

          

# Easy IO

A simple framework to create simple input/output functions.

## Installation/Usage

The intent is to provide users with a very easy setup process, an entire easy IO app
could be contained in a single HTML file:

```html


stdio App


stdio.title("My Cool Thing").add(
{
type: "textInput",
name: "the input",
label: "Type in right here"
},
{
type: "output",
link: "the input",
transform: str =>
str
.split("")
.reverse()
.join("")
}
);

```

That will create a nice looking interface where someone can input a sentence,
and it will spit out the reverse of it.

## License

This project is licensed under the MIT license please see the [LICENSE](LICENSE)
file for more details.