github.com/hellofresh/janus@v0.0.0-20230925145208-ce8de8183c67/docs/README.md (about) 1 > An API Gateway written in Go 2 3 This is a lightweight API Gateway and Management Platform that enables you to control who accesses your API, 4 when they access it and how they access it. API Gateway will also record detailed analytics on how your 5 users are interacting with your API and when things go wrong. 6 7 ## Why Janus? 8 9 > In ancient Roman religion and myth, Janus (/ˈdʒeɪnəs/; Latin: Ianus, pronounced [ˈjaː.nus]) is the god of beginnings, 10 gates, transitions, time, doorways, passages, and endings. He is usually depicted as having two faces since he 11 looks to the future and to the past. [Wikipedia](https://en.wikipedia.org/wiki/Janus) 12 13 We thought it would be nice to name the project after the God of the Gates :smile: 14 15 ## What is an API Gateway? 16 17 An API Gateway sits in front of your application(s) and/or services and manages the heavy lifting of authorisation, 18 access control and throughput limiting to your services. Ideally, it should mean that you can focus on creating 19 services instead of implementing management infrastructure. For example, if you have written a really awesome 20 web service that provides geolocation data for all the cats in NYC, and you want to make it public, 21 integrating an API gateway is a faster, more secure route than writing your own authorisation middleware.