top | item 11821474

(no title)

neo2001 | 9 years ago

(Author of Gordon here)

I think the people from serverless (and apex) are doing an amazing job evangelizing about the benefits of server-less infrastructures and they have amazing projects they should be quite proud of.

Than been said, I think both projects walk different paths in order to achieve similar goals.

What is different with other approaches?

* Isolation is one of the most important things for us. Each of the stages of your application are deployed into independent Cloudformation stacks.

* We don't stream commands to the AWS api. Every single of your resources are created using CF.

* We respect the tooling of each of the runtimes so javascript, java or python developers should not get exposed to software they are not use to.

* Convention over configuration. Perhaps this is because my background is the Python/Django ecosystem, but writing 200 lines configuration files in JSON feels completely wrong to me.

* Documentation documentation documentation: Again, perhaps I've been badly educated by the Django community, but documentation and examples are (for me) the most important thing a project like this should have. That's why gordon's documentation is quite complete (I would say) and we have more than 20 example project including integrations with Slack, Telegram, Twilio... and AWS services such as Kinesis, Dynamodb, Apigateway, S3, Cloudwatch Events, Cloudwatch Scheduled Events, etc...

I think is an amazing moment to be involved in the server-less community and we'll all benefit from a thriving ecosystem like this :D

discuss

order

matlock|9 years ago

Great work on this. We're actually moving in a similar direction at Serverless with full Cloudformation support in our current development branch for all the reasons you listed. Would love to chat sometime, email is in my account page.

orasis|9 years ago

FWIW, I've been using serverless the last couple of weeks and I find the request-response parameter mapping absolutely maddening.

Most of us have become used to frameworks like express for specifying our routes and manually specifying API gateway rules feels like a huge step backwards.

hmate9|9 years ago

Good work on Gordon, I'm certain I will use it in the future.

alixaxel|9 years ago

I don't think he has Gordon in his name. :P

felixgallo|9 years ago

This looks really well thought out and executed. Nice work!