Skip to content

nati-esh-zed/mor.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mor.js

A Javascript framework experiment using modules.

sample code

<!-- index.html -->

<div id="main">
    <!-- this will be populated -->
</div>
<script type="module">
    import html from './morjs/html/html.js';
    import App  from './morjs/App.js';
    const main = function() 
    {
        return html.h1({
            html: 'hello world!',
        });
    };
    let app = new App(document.getElementById('main'), main);
    app.reload();
</script>

About

A Javascript framework experiment using modules.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published