Overview

Introducing Succinct

Why the name "Succinct"
Succinct: Compact precise expression without wasted words

Succinct is a web framework that attempts to give back developers the joy of creating solutions quickly without having to sweat too much.

Succinct aims to address common application concerns (such as user managment, login, user-role permissions, data-role permissions, async processing, crud….) in a way that follows proven solution patterns so that application developers can leverage these solutions in their applications with confidence.

Allowing Framework to handle these common concerns makes application code Less buggy as it is Small,Brief and Precise. Hence the name of the framework “Succinct”.

Why another framework?

Web Applications in most domains have similar requirements and developers often keep reinventing the wheel for each project. Succinct aims to provide standardized solutions (as plugins) to standard concerns so that writing applications on Succinct becomes easy and fun by just composing these well designed solutions for standard concerns.

Features

  1. Model driven developement

  2. Pluggable modules.

  3. All Models including framework models are extensible by applications and plugins.

  4. Sophisticated data access layer that makes database access simple while being secure.

  5. Auto migration of database based on Model definition(s).

  6. Zero Code for crud operations, full text search, and import/export via xls

    1. A Single controller with in the framework responds restfully to crud operation end-points for all models with json/xml/html.

    2. Generic (List & Detail) Views rendered by the framework for crud operations on models.

  7. Low code for non-crud business domain actions.

    1. Application behaviour customizable through model methods and extension points/hooks.

    2. Domain actions can be added to controllers.

    3. Views customizable via Vuejs/Reactjs and similar frameworks.

  8. Favours Convention over configuration inculcating good programing practices.

  9. Embedded a Jetty Server .

System Requirements

  • java - 8+

  • maven - 3.5+

Installing Succinct

Succinct framework gets auto installed via maven when you try to create an application. However, if you wish to be on the development version of Succinct, you can clone the relevant github repositories manually and build them locally.

Repository Name

Instructions

common

git clone https://github.com/venkatramanm/common.git
cd common
mvn install

reflection

git clone https://github.com/venkatramanm/reflection.git
cd reflection
mvn install

swf-all

git clone https://github.com/venkatramanm/swf-all.git
cd swf-all
mvn install