tinbot

tinwayJS - A JavaScript library for building user interfaces


License
ISC
Install
npm install tinbot@0.0.1

Documentation

tinwayJS 0.1

tinwayJS - A JavaScript library for building user interfaces!

Starts a new open web journey! more cool features to come!

Example

1. Create index.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title>tinwayJS - A JavaScript library for building user interfaces</title>
    </head>
    <body>
        <div id="app"></div>
        <script type="module" src="app.js"></script>
    </body>
</html>

2. Create app.js

import {run} from './tinway.js'

let test = () => console.log('test')
let start = () => console.log('start')

run({
    
    html:'./main.html',
    data: {
        test: test
    },
    start: start

})

import file tinway.js

function run() renders a web page!

  1. html: Path to html file.
  2. data: Connecting functions to html file.
  3. start: Run a function after rendering the page.

3. Create html file main.html

<h1>Test</h1>

<button onClick="window.tinway().test()">button test</button>

window.tinway().test() runs the created test function.

And here the fantasies of developers are endless :)