Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Frappe | 5,162 | a day ago | 1,621 | mit | Python | |||||
Low code web framework for real world applications, in Python and Javascript | ||||||||||
Genie.jl | 2,015 | 6 days ago | 110 | mit | Julia | |||||
🧞The highly productive Julia web framework | ||||||||||
Rapidoid | 1,600 | 3 | 5 | 7 months ago | 72 | May 27, 2018 | 47 | apache-2.0 | Java | |
Rapidoid - Extremely Fast, Simple and Powerful Java Web Framework and HTTP Server! | ||||||||||
Cuba | 1,308 | 2 months ago | 585 | apache-2.0 | Java | |||||
CUBA Platform is a high level framework for enterprise applications development | ||||||||||
Prologue | 1,091 | a month ago | February 08, 2020 | 29 | apache-2.0 | Nim | ||||
Powerful and flexible web framework written in Nim | ||||||||||
Kvision | 1,043 | 4 | a month ago | 49 | July 11, 2022 | 28 | mit | Kotlin | ||
Object oriented web framework for Kotlin/JS | ||||||||||
Pagoda | 795 | 6 days ago | 6 | August 28, 2022 | 4 | mit | Go | |||
Rapid, easy full-stack web development starter kit in Go | ||||||||||
Tg2 | 783 | a day ago | 10 | other | Python | |||||
Python web framework with full-stack layer implemented on top of a microframework core with support for MongoDB, Pluggable Applications and autogenerated Admin | ||||||||||
Farrow | 754 | 5 | 9 days ago | 45 | March 03, 2022 | 16 | mit | TypeScript | ||
A Type-Friendly Web Framework for Node.js | ||||||||||
Structr | 724 | 1 | 1 | a day ago | 2 | May 02, 2016 | 27 | gpl-3.0 | Java | |
Structr is an integrated low-code development and runtime environment that uses a graph database. |
CUBA Platform is a high level framework for rapid development of enterprise applications with rich web interface.
The simplest way to start using the platform is to download CUBA Studio and create a new project in it. A released version of the platform will be downloaded automatically from the artifact repository.
You can also build a snapshot version of the platform from the source code and use it in your project.
To contribute, first refer to Contributing Code for general instructions and requirements for contributing code to the platform.
In order to build the platform from source, you need to install the following:
Let's assume that you have cloned CUBA Gradle Plugin and CUBA into the following directories:
work/
cuba/
cuba-gradle-plugin/
Open terminal in the work
directory and run the following command to build and install the plugin into your local Maven repository (~/.m2
):
cd cuba-gradle-plugin
gradlew install
After that, go to the CUBA directory and build and install it with the same command:
cd ../cuba
gradlew install
Edit the build.gradle
file of your project. Change the ext.cubaVersion
property and add mavenLocal()
to the repositories
section, for example:
buildscript {
ext.cubaVersion = '7.3-SNAPSHOT'
repositories {
mavenLocal()
maven { ...
That's all. Now you can build and deploy your application based on the snapshot version of the platform from your local repository:
gradlew deploy
The platform uses a number of forked third-party libraries. They can be found in the following source code repositories:
All dependencies are also located in our artifacts repository, so you don't have to build them from sources in order to build and use the platform.