Skip to content
forked from lucsoft/WebGen

WebGen is a UI Library. Layout and Design in one. No Custom Toolchain

License

Notifications You must be signed in to change notification settings

GregTCLTK/WebGen

 
 

Repository files navigation

WebGen 2.0

A SwiftUI-like Webframework

Getting Started

// Create a mod.ts file
import { Label, Body, WebGen } from "https://deno.land/x/webgen/mod.ts";

WebGen();
Body(
    Label("Hello World!")
);
// Create a serve.ts file
import { serve } from "https://deno.land/x/esbuild_serve/mod.ts";

serve({
    pages: {
        "index": "mod.ts",
    },
});
deno run -A serve.ts

Done! Have fun! More docs will follow

About

WebGen is a UI Library. Layout and Design in one. No Custom Toolchain

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 78.2%
  • CSS 21.8%