Hi all, I've advertised this tool and wrote a blog post about it even, but never really announced it here or in Slack. I thought a forum would be a better place for feedback than Twitter or something so I figured I'd post here.
You can find the project here: https://github.com/tmaiaroto/aegis Basically, the reason I built this was because I was always inspired by tools that let you deploy static sites to Amazon S3 real quick. I wanted something similar for deploying APIs. While there are other wonderful solutions (that I still love and use) they weren't exactly what I wanted. So this will use AWS Lambda for your app and API Gateway will forward requests to the Lambda. Any request. Any HTTP method. When using this package's helper functions, it will transform those requests into something a bit more friendly and familiar. Essentially there's a router for you to use in your app (with a "fall through" to catch anything not explicitly handled). I'm curious what people think and if I can find any way to improve upon it. Already it's helped me, but I hope it can help others. I'm also really excited about Go 1.8's plugin feature and I'm curious if there's a way to use plugins with the router here. So for example, if I wrote a serverless API that was a geocoder or something (and maybe more) and you wanted to bring it into your API, you could use the plugin build mode to include part of it. You might not want all of my API, but just a certain part. So you could load one of the handlers and use it under any route in your own app. I'm not sure if that is better than simply relying upon import, but I do think it might provide an easier opportunity to use part of another package without that package being written explicitly as something that was intended to be imported into another app. The idea of a composable API comes to mind and I wonder if there's even a CLI way to manage that. Thoughts anyone? Thanks! -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.