Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/yosef-eid/joscript
- Owner: Yosef-Eid
- Created: 2023-10-08T19:29:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-09T05:21:46.000Z (over 1 year ago)
- Last Synced: 2023-10-09T21:36:44.943Z (over 1 year ago)
- Topics: css, html, javascript, josceipt
- Language: JavaScript
- Homepage: https://joscript.netlify.app/
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```