Welcome to your AWS serverless Express application. This example application has several resources configured for you to explore. State is stored in memory in a given container, and thus ephemeral - see Understanding Container Reuse in AWS Lambda for more information.
Returns a list of all users.
curl users
Creates a new user.
curl users -X POST -d '{"name":"Jake"}' --header 'content-type: application/json'
Returns a single user.
curl users/1
Updates an existing user.
curl users/1 -X PUT -d '{"name":"Jane"}' --header 'content-type: application/json'
Deletes an existing user.
curl users/1 -X DELETE