Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/yosef-eid/joscript

This is JoScript, a JavaScript library, that simplifies JavaScript code making it easier to create, design, and develop front-ends.
https://github.com/yosef-eid/joscript

css html javascript josceipt

Last synced: about 11 hours ago
JSON representation

This is JoScript, a JavaScript library, that simplifies JavaScript code making it easier to create, design, and develop front-ends.

Awesome Lists containing this project

README

        




joscript



I have created and developed a new library called (joscript) that simplifies JavaScript code so that developing and building websites is easier than would be possible with JavaScript alone

```jsx
import { jo } from "../../joscript/joScript.js";

function App() {let load = window.onload = () => {

return(
jo('div', {class:'app ', id:'app' ,children:[

jo('h1', {text:'Welcome to joscript', id:'x'},{height:'100px', color:'#383D45'}),
jo('img', {src:'/src/App/joScript-logo.svg'})

]})
)

};return load()}
export default App;
```