diff options
author | Robert Jaros <rjaros@finn.pl> | 2018-06-04 14:37:18 +0200 |
---|---|---|
committer | Robert Jaros <rjaros@finn.pl> | 2018-06-04 14:37:18 +0200 |
commit | f1ab917690da994c9b76ae2c0cf1ff9a578e5fc5 (patch) | |
tree | 4332e01fd98d8175b6817b58b3409f600503b53d | |
parent | 12d2bd198c9ff5cb197e50da2d024a2418b8ee36 (diff) | |
download | kvision-f1ab917690da994c9b76ae2c0cf1ff9a578e5fc5.tar.gz kvision-f1ab917690da994c9b76ae2c0cf1ff9a578e5fc5.tar.bz2 kvision-f1ab917690da994c9b76ae2c0cf1ff9a578e5fc5.zip |
KVision 0.0.13 released
-rw-r--r-- | _posts/2018-06-04-kvision-0.0.13-released.markdown | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/_posts/2018-06-04-kvision-0.0.13-released.markdown b/_posts/2018-06-04-kvision-0.0.13-released.markdown new file mode 100644 index 00000000..5571198e --- /dev/null +++ b/_posts/2018-06-04-kvision-0.0.13-released.markdown @@ -0,0 +1,37 @@ +--- +layout: post +title: "KVision 0.0.13 released" +author: Robert Jaros +date: 2018-06-04 14:29:00 +0100 +categories: kvision kotlin +--- + +I've just released KVision 0.0.13. + +Changelog: +- DockPanel usability fixes +- a dialog component +- new simple HTML5 canvas component +- add resizeWindow event to Window component +- add dependencies on kotlinx.serialization and kotlinx.coroutines +- multiplatform kvision-common and kvision-server modules +- Jooby framework integration with automatic JSON-RPC connectivity +- Kwery ORM integration +- Pac4j security module integration +- change module kind option to 'umd' + +KVision contains now an innovative connectivity interface for [Jooby](https://jooby.org) micro web framework on the server side, +which allows to build full-stack, multiplatform applications with shared common code. KVision closely integrates the client and +the server side of the project with a shared data model and fully type-safe connectivity between both sides (based on +automatically generated routings and JSON-RPC endpoints). + +I've created a new example application - "Address book - fullstack". It utilizes: + +- H2 SQL database (configured for "filesystem" database) +- [Kwery](https://github.com/andrewoma/kwery) ORM for database connectivity +- [Pac4J](https://github.com/pac4j/pac4j) security engine for authentication and profile management + +The architecture of the project is heavily based on Kotlin coroutines, wrapping asynchronous client-server calls into easy-to-read +synchronous-like code. + +[You can play with live demo on Heroku](https://kvision-address-book.herokuapp.com/) |