Skip to content

emweb/wt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8ec7e89 · Oct 19, 2017
Sep 11, 2017
Sep 19, 2017
Oct 19, 2017
Aug 31, 2017
Aug 11, 2017
May 22, 2017
Oct 16, 2017
Feb 22, 2012
Aug 31, 2017
Jul 7, 2014
Oct 19, 2017
May 13, 2014
Oct 19, 2017
Oct 11, 2017
Oct 11, 2017
Sep 15, 2017
Apr 3, 2017
Jun 15, 2017
Oct 19, 2017
Aug 22, 2017
Feb 16, 2009
Jul 13, 2017
Oct 19, 2017

Repository files navigation

What is Wt ?

Wt is a C++ library for developing web applications. It consists of:

  • libwt, a widget/rendering library
  • libwthttp, an (async I/O) HTTP/WebSockets server
  • libwtfcgi, a FastCGI connector library (Unix)
  • libwtisapi, an ISAPI connector library (Windows)
  • libwttest, a test connector environment

It also contains a C++ ORM, which can be used in a web application (obviously), but can also be used on its own:

  • libwtdbo, a C++ ORM
  • libwtdbopostgres, PostgreSQL backend
  • libwtdbosqlite3, Sqlite3 backend
  • libwtdbofirebird, Firebird backend

For more information, see the homepage.

Dependencies

To build Wt from source you will need at least CMake (>= 2.4), and boost (version >= 1.41).

Optionally, you may want to add:

  • OpenSSL for SSL and WebSockets support in the built-in httpd, the HTTP(S) client, and additional cryptographic hashes in the authentication module
  • Haru PDF library which is used for painting to PDF
  • GraphicsMagick which is used for painting to PNG, GIF (on Windows, Direct2D can be used instead)
  • PostgreSQL for a PostgreSQL backend
  • Firebird for a Firebird backend
  • Pango for improved font support in PDF and raster image painting (on Windows, DirectWrite can be used instead)
  • ZLib for compression in the built-in httpd.

For the FastCGI connector, you also need:

Building

Generic instructions for Unix-like platforms or Windows platforms.

Bug Reporting

Bugs can be reported here http://redmine.webtoolkit.eu/projects/wt/issues/new

Demos, examples

The homepage, itself a Wt application, contains also various examples.