UNPKG

create-bablojstest

Version:

A lightweight, fast, and scalable Single Page Application framework built with vanilla JavaScript. BABLOJS provides React-like features including Virtual DOM, hooks, routing, and component-based architecture without any build step or external dependencies

28 lines (26 loc) 901 B
<!DOCTYPE html> <html lang="en"> <head> <base href="./" /> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="A fast and scalable SPA built with a custom vanilla JS framework" /> <meta name="keywords" content="SPA, vanilla JS, fast, scalable, SEO" /> <meta name="robots" content="index, follow" /> <title>BABLOJS - Modern Vanilla JavaScript SPA Framework</title> <link rel="stylesheet" href="./src/assets/css/style.css" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" /> <script type="module" src="./src/app/load/main.js"></script> </head> <body> <div id="app"></div> </body> </html>