{"id":14983133,"url":"https://github.com/ethlo/lamebda","last_synced_at":"2026-02-28T20:02:41.058Z","repository":{"id":34294694,"uuid":"129917649","full_name":"ethlo/lamebda","owner":"ethlo","description":"Powerful plugin system for adding custom functionality to existing applications, supporting both pre-compiled or source code, with live reload.","archived":false,"fork":false,"pushed_at":"2025-11-08T06:41:35.000Z","size":883,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-17T13:20:31.545Z","etag":null,"topics":["compiler","java","on-the-fly","plugin-system","spring","spring-mvc"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ethlo.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-04-17T14:32:01.000Z","updated_at":"2025-11-08T05:48:19.000Z","dependencies_parsed_at":"2024-10-12T02:41:11.583Z","dependency_job_id":"9da48960-df41-494f-bda7-4d7e7748182d","html_url":"https://github.com/ethlo/lamebda","commit_stats":{"total_commits":309,"total_committers":5,"mean_commits":61.8,"dds":0.5598705501618123,"last_synced_commit":"57a4e6136f598c15c6f0c2b35ad0751e6643e867"},"previous_names":[],"tags_count":53,"template":false,"template_full_name":null,"purl":"pkg:github/ethlo/lamebda","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethlo%2Flamebda","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethlo%2Flamebda/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethlo%2Flamebda/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethlo%2Flamebda/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ethlo","download_url":"https://codeload.github.com/ethlo/lamebda/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ethlo%2Flamebda/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29951075,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T18:42:55.706Z","status":"ssl_error","status_checked_at":"2026-02-28T18:42:48.811Z","response_time":90,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compiler","java","on-the-fly","plugin-system","spring","spring-mvc"],"created_at":"2024-09-24T14:06:47.071Z","updated_at":"2026-02-28T20:02:41.013Z","avatar_url":"https://github.com/ethlo.png","language":"Java","readme":"\n\u003cimg alt=\"Lamebda logo\" src=\"./logo.svg\" width=\"230\" style=\"background:white; padding-right:10px; padding-left:20px; margin-right: 20px; float:left; fill:white\"\u003e\n\n[![Maven Central](https://img.shields.io/maven-central/v/com.ethlo.lamebda/lamebda.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.ethlo.lamebda%22)\n[![Hex.pm](https://img.shields.io/hexpm/l/plug.svg)](LICENSE)\n\nA simple, powerful, plugin system for adding new API endpoints or custom functionality to you Spring project. \nOftentimes there are conflicting requirements when utilizing a common main application. The required custom functionality needed is often easy to do with a few lines of code, but is not acceptable to add to your main code-base. With Lamebda you can load libraries with custom functionality.\n\n\u003e It Really Whips The Lambda's Ass!\n\n## Example use-cases\n\n* Ad-hoc API services and integration projects - Changes in the integration code can evolve freely from the core service\n* Transactional support across multiple API calls\n* Batch multiple API calls to avoid chatty data exchange\n* API prototyping\n* A powerful support tool for extracting data or changing state.\n\n## Getting started\n\n### Integrating with your project\n\n\n#### Usage with Spring Boot and Spring MVC\n\nAdd dependency to your `pom.xml`\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.ethlo.lamebda\u003c/groupId\u003e\n    \u003cartifactId\u003elamebda-spring-web-starter\u003c/artifactId\u003e\n    \u003cversion\u003e{$lamebda_version}\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nAdd the following properties to your applications `application.properties|yaml`:\n```properties\nlamebda.enabled=true\nlamebda.root-directory=/var/lib/lamebda\nlamebda.request-path=/gateway\nlamebda.required-projects= # Optional list of projects that have to be present for the project to start\n```\n\n### Project configuration\n`project.properties`\n* `project.name` - Human-readable name of the project. Optional.\n* `project.base-packages` - The base packages that Spring IOC container is scanning for services and controllers.\n* `project.root-request-path-enabled` - Default is true. If you set this to false, the URLs in this project will not have the prepended `gateway` path.\n* `project.url-prefix-enabled` - Default is true. If you set this to false the URLs in this project will not have the prepended project alias.\n\nTo create a project for deploying into Lamebda, please see https://github.com/ethlo/lamebda-samples.\n\n### Monitoring\nThe loaded project(s) can be monitored using a custom [Actuator](https://docs.spring.io/spring-boot/reference/actuator/index.html) endpoint, under `/actuator/lamebda`.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethlo%2Flamebda","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fethlo%2Flamebda","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fethlo%2Flamebda/lists"}