|
|
|
Advice on Creating a JavaScript Framework to End the Madness
|
|
1 points
by oarabilek
914 days ago
|
|
A day ago I came up with the idea of wrapping normal html and making it accessible as js :
```jsx
function onStart(){
lay = ui.createLayout('Linear','FillXY,VCenter') btn = ui.addButton('Hello',500,100,null,lay) ui.render()
}
//this will show an html button
```
I've built an early version of this and uploaded on github: https://github.com/oarabiledev/squidBase
I was wondering if this was a great project and worth my time to create. |
|
Personally, I don’t know if these are the main problems that need to be solved. That said, it’s all a learning experience!