Skip to content
/ webui Public

GLib/GObject library that allows system applications to have a Web-based UI without ever leaving Vala source

Notifications You must be signed in to change notification settings

ppibburr/webui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webui

GLib/GObject library that allows system applications to have a Web-based UI without ever leaving Vala source

Example

using WebUI;

void main() {
	var srv = new Service(8080);

	srv.route("/foo", (conn) => {
	  var view = new View(conn, "view_1");
	  var s1   = new Slider(view);
	  
	  s1.changed.connect((data) => {
		print(@"$data\n");
	  }); 
	  
	  view.add(s1);
	});
	
	

	new MainLoop().run();
}

About

GLib/GObject library that allows system applications to have a Web-based UI without ever leaving Vala source

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages