Skip to content

WebAssembly Lightweight Javascript Framework in Go (React / AngularJS Inspired)

Notifications You must be signed in to change notification settings

enimatek-nl/tango

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tango

Lightweight WASM HTML / Javascript Framework

Intro

WebAssembly is nice, Go on the web is nice, so I ported Tangu to Go and WebAssembly.

Tangu is an AngularJS inspired project I started a while back to explore nim.

Where Tangu is nim 100% transpiled Javascript, Tango is golang compiled to WASM.

Usage

GOOS=js GOARCH=wasm go get github.com/enimatek-nl/tango

Get Started

func main() {

    tg := tango.New()
    
    tg.AddComponents(
        std.Router{},
        std.Repeat{},
        std.Click{},
        std.Bind{},
        std.Change{},
        std.Model{},
        std.Attr{})
    
    tg.AddRoute(tango.NewRoute("/", &ViewController{Hello: "hello?"}))
    
    tg.Bootstrap()

}
type ViewController struct {
	Hello   string      `tng:"hello"`
	ClickMe tango.SFunc `tng:"clickme"`
}

func (v ViewController) Config() tango.ComponentConfig {
    return tango.ComponentConfig{
        Name:   "ViewController",
        Kind:   tango.Controller,
        Scoped: false,
    }
}

func (v *ViewController) Constructor(tng tango.Hook) bool {
    v.ClickMe = func(self *tango.Tango, this js.Value, local *tango.Scope) {
        v.Hello = "world!"
        tng.Digest(v)
    }

    return true
}

func (v ViewController) Render() string {
    return `
        <div>
            <p tng-bind="hello"></p>
            <button tng-click="clickme">click me!</button>
        </div>
    `
}

func (v ViewController) AfterRender(tng tango.Hook) bool {
	return false
}

How to use this Web Framework (SPA) & Backend API as a single project?

Check out this todo example project as a reference implementation including Makefile and project structure.

This project is a WIP...

About

WebAssembly Lightweight Javascript Framework in Go (React / AngularJS Inspired)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages