Skip to content

CLOVIS-AI/Pedestal

Repository files navigation

Pedestal • Librairies for performant multiplatform apps

OpenSavvy Pedestal is a collection of open source utilities for unified software architecture, aiming to solve common problems in a simple and elegant way with Kotlin Multiplatform. In particular, Pedestal focuses on fullstack development.

The rendered documentation for the latest released version is available here. The release notes and changelogs are available here or as Git tags.

This project contains the following modules:

  • Pedestal Progress models the progress of an asynchronous task and its subtasks.
  • Pedestal State models the success or failure of an operation, without losing progress information.
  • Pedestal Cache is a collection of reactive cache implementations to aggressively reduce bandwidth usage with easy integration with reactive UI frameworks, like React or Compose.
  • Pedestal Backbone is an opinionated architectural pattern, using aggressive caching in all layers of a multiplatform application to entirely abstract away mutability behind coroutines.

Pedestal focuses heavily on Kotlin and attempts to depend on as few external dependencies as possible. Where possible, compatibility modules are provided to interoperate with other ecosystems.

In the wild

OpenSavvy Pedestal is used by these projects:

  • Formulaide is a web form editor with integrated workflow management,
  • Decouple is a Kotlin Multiplatform UI framework aiming to decouple design systems from UI logic.

Using in your own projects

You can easily add any module using Gradle:

repositories {
	// Pedestal is available on Maven Central
	mavenCentral()

	// Or, if you prefer, Pedestal is also available in our own maven repository
	maven {
		name = "OpenSavvy Pedestal"
		url = uri("https://gitlab.com/api/v4/projects/37325377/packages/maven")
	}
}

// You can now add a dependency on the various modules:
dependencies {
	implementation("dev.opensavvy.pedestal:backbone:<the version you want>")
}

Currently, we only publish builds for Kotlin/JVM, Kotlin/JS (IR only) and Kotlin/Native for iOS. This project has very little platform-specific code, and would be easy to port to any other platform—we just don't have the need for it. If you are interested in another platform, we encourage contributions that add the relevant CI configuration to test and deploy for that platform.

Development

Pedestal is managed by Gradle, which requires a valid Java installation. On Windows, substitute ./gradlew by gradlew.bat in the following commands.

Gradle is invoked by running ./gradlew <tasks here> in the project root.

  • ./gradlew projects to list the available projects,
  • ./gradlew tasks to list the available tasks in the root project,
  • ./gradlew <project>:<task> to execute a task from another project (for example, ./gradlew backbone:tasks to get the list of tasks in the Backbone project).

We recommend using IntelliJ IDEA (Community or Ultimate), for which we provide the configuration (run configurations, coding style…).

Contributing

See CONTRIBUTING.md.

  • To learn more about our coding conventions and workflow, see the OpenSavvy Wiki.
  • This project is based on the OpenSavvy Playground, a collection of preconfigured project templates.

About

Multiplatform software architecture utilities for performant modern apps (mirror)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages