Hacker News new | ask | show | jobs
by nozepas 1937 days ago
Your project looks fairly similar to Chalice but using TS. Am I correct? How do you compare yourselves to Chalice?
1 comments

The big difference is that Chalice (from what I remember) runs a local server where you test your functions and once you are ready, you'll deploy it to AWS.

This deploys it to AWS first, and when a function gets invoked remotely, streams that request to your local machine where it'll execute that function and send the results back to AWS. You basically get to test and develop against your real infrastructure.