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

Development

Go

KrakenD image

In the fast-paced world of software development and microservices, keeping things streamlined and efficient is like hitting the goldmine every time. The Lura Project, also known by its beloved former name, KrakenD, is making waves in this space with its ultra performant API Gateway. Now hosted under The Linux Foundation, this open-source project is a game-changer for those looking to remove complexity and simplify their API integrations, making developers' lives easier and their applications faster. So, what’s the big deal with Lura, you ask? Imagine a mobile developer needing to fetch data from multiple backend services. This usually means sending several requests and waiting for each response – talk about time-consuming and not cool! But with Lura, you can combine all these requests into a single endpoint. Picture this: instead of bombarding your backend with multiple calls, you go with just one. Lura then merges all the data and delivers only the bits and pieces your client actually needs. This is a game-changer for reducing response sizes and waiting times. It's like combining the best features of a Swiss Army knife but for APIs. The powerhouse behind Lura is its ability to act as an aggregator. It takes multiple data sources and wraps, transforms, and shrinks responses. Users can extend its functionality with a wide variety of middlewares and plugins, adding layers like OAuth authorization and additional security. And hey, if HTTP(S) isn’t your jam, no sweat – Lura’s flexible core allows you to build API gateways and proxies of all kinds, even RPC gateways. Coming from a community-focused and open framework, Lura encourages developers to build from the source or reutilize its components elsewhere. The beauty lies in its modular, reusable components that follow the Unix philosophy – keep it simple, do one thing well, and make it composable. For those keen to dive into the nitty-gritty, the project is delivered as a Go library. It’s got practical examples to help you spin up a powerful proxy or API gateway in no time. Here’s a snippet of how easy it is to get started: ```go package main import ( "flag" "log" "os" "github.com/luraproject/lura/config" "github.com/luraproject/lura/logging" "github.com/luraproject/lura/proxy" "github.com/luraproject/lura/router/gin" ) func main() { port := flag.Int("p", 0, "Port of the service") logLevel := flag.String("l", "ERROR", "Logging level") debug := flag.Bool("d", false, "Enable the debug") configFile := flag.String("c", "/etc/lura/configuration.json", "Path to the configuration filename") flag.Parse() parser := config.NewParser() serviceConfig, err := parser.Parse(*configFile) if err != nil { log.Fatal("ERROR:", err.Error()) } serviceConfig.Debug = serviceConfig.Debug || *debug if *port != 0 { serviceConfig.Port = *port } logger, _ := logging.NewLogger(*logLevel, os.Stdout, "[LURA]") routerFactory := gin.DefaultFactory(proxy.DefaultFactory(logger), logger) routerFactory.New().Run(serviceConfig) } ``` Not only does it support HTTP(S), Lura takes it up a notch by allowing you to manage and optimize how data is consumed and inferred by clients, making it the perfect companion for any microservice architecture. This snippet is just a taste of what you can do with Lura; more detailed and extensive documentation is available for those ready to dive deeper. And here’s the kicker - Lura is all about the community. Contributions are always welcome, and the team behind it encourages developers to report bugs, suggest features, or even submit their code. Join the conversation on Twitter, jump into their Slack, or simply delve into the comprehensive documentation to make the most out of Lura. Lura, with its powerful tools and community-driven approach, not only promises to reduce complexity for front-end developers but also empowers them to streamline their backend services, making it an indispensable asset in the toolkit of modern developers. Ready to make your API integrations smoother than a hot knife through butter? Dive into Lura today!

Check out site
Back to all products