luraproject/lura

Ultra performant API Gateway with middlewares. A project hosted at The Linux Foundation

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 38 minutes ago
Added to GitGenius on September 9th, 2026
Created on November 4th, 2016
Open Issues & Pull Requests: 13 (+0)
GitHub issues: Enabled
Number of forks: 582
Total Stargazers: 6,796 (+0)
Total Subscribers: 113 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 0.6 hours
Mean response time: 17.1 days
90th percentile: 104.3 days
Tracked items: 8

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 3
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 310 days
Stale 30+ days: 2
Stale 90+ days: 2

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • locked (6)
  • new feature (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Lura is a Go library for building ultra-performant API gateways with middleware support. The project was formerly known as the KrakenD framework and serves as the core of the KrakenD API Gateway.

Lura solves the problem of client applications needing to aggregate data from multiple backend services by acting as a proxy layer that sits between clients and source servers. It combines responses from many sources into single endpoints, allowing developers to group, wrap, transform, and reduce response payloads to only the data clients actually need. This eliminates the complexity of clients managing multiple round-trip requests and filtering responses themselves. While primarily designed for HTTP and HTTPS, Lura's generic library architecture supports building other types of gateways and proxies, including RPC gateways. The framework includes middleware support for adding functionality like OAuth authorization and security layers.

Lura is presented as a Go library for developers who want to build API gateways from source or reuse its components in other applications. It follows Unix philosophy principles with small, independent, reusable components. Developers should use this repository if they need to compile and customize their own gateway implementation. For those seeking a ready-to-use binary API Gateway without building from source, the KrakenD binary distributions are available as an alternative. The framework includes comprehensive documentation covering configuration files and component benchmarks.

The project maintains active development with regular updates to its core libraries and middleware components. The codebase demonstrates consistent refinement of performance-critical paths and gateway functionality. Documentation is kept current with framework changes and includes practical examples for library usage. The project sustains an organized structure separating the reusable framework from complete gateway implementations, allowing both library consumers and gateway builders to work effectively with the codebase.