Build a highly scalable REST API in 100 lines

Posted on Wed 02 December 2020 in programming • Tagged with serverless, javascript

Today I'll be walking through how to build a REST API endpoint with the following features:

  • Automatic TLS/SSL encryption
  • Accessible by both front and back-end applications
  • Horizontally scalable
  • API key validation and limiting
  • Persistent storage
  • Automated deployments

All in about 100 lines of code. It can be a bit …


Continue reading