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.
- Host: GitHub
- URL: https://github.com/coolreader18/stdio.js
- Owner: coolreader18
- License: mit
- Created: 2018-05-08T05:05:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-09T22:24:27.000Z (over 7 years ago)
- Last Synced: 2025-02-27T02:17:05.849Z (11 months ago)
- Language: JavaScript
- Size: 101 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.