Profile picture
Evan Prodromou 🏀👀 @evanpro
, 15 tweets, 2 min read Read on Twitter
Here's my serverless platform checklist
[ ] Auto-scale. I shouldn't ever have to do things like adding nodes under high load or removing nodes when load is lower.
[ ] Run JavaScript. Great if you support whatever, but I'm going to run JS.
[ ] async/await. That means Node 8 or later.
[ ] Default mapped URLs. If I create a function foo, it should show up by default at `/wherever/foo`
[ ] Continuous integration. I need to test functions from our CI server.
[ ] Continuous deployment. Push when tests pass.
[ ] GET. I want to `GET /foo/14`, not `POST /foo < {id: 14}`
[ ] URL parameters. I should be able to `GET /foo/14`, not `GET /foo?id=14`
[ ] Integrated object database. I want an easy API for doing queries that returns JSON documents. I don't want to manage connections or connection pools.
[ ] Integrated offline queue management. I want to throw data into a processing queue and forget about it. Some other function will handle it. I don't want to have to manage how many queue handler instances there are; that should auto-scale, too.
[ ] Minimal boilerplate. If I'm making an app with 50 functions, I don't want 5 lines of `require` and `initialize(...)` at the beginning of each file. Just the function, please.
[ ] Helm chart to deploy. I want `helm install stable/<your server>` and that's it.
[ ] Configurable authz. I don't want your snowflake auth system; my clients use OAuth 2.0. Make it easy for me to use this, and preferably not with custom code at the beginning of every function.
(It should go without saying that the object database should auto-scale, too.)
Missing some Tweet in this thread?
You can try to force a refresh.

Like this thread? Get email updates or save it to PDF!

Subscribe to Evan Prodromou 🏀👀
Profile picture

Get real-time email alerts when new unrolls are available from this author!

This content may be removed anytime!

Twitter may remove this content at anytime, convert it as a PDF, save and print for later use!

Try unrolling a thread yourself!

how to unroll video

1) Follow Thread Reader App on Twitter so you can easily mention us!

2) Go to a Twitter thread (series of Tweets by the same owner) and mention us with a keyword "unroll" @threadreaderapp unroll

You can practice here first or read more on our help page!

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just three indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member and get exclusive features!

Premium member ($30.00/year)

Too expensive? Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal Become our Patreon

Thank you for your support!