serverless-stack-demo-api icon indicating copy to clipboard operation
serverless-stack-demo-api copied to clipboard

Source for the demo app API in the Serverless Stack Guide

Results 16 serverless-stack-demo-api issues
Sort by recently updated
recently updated
newest added
trafficstars

there is this line in the package.json `"main": "handler.js", ` but the handler file is not present in the project. is this a mistake? does this run? thanks. vincent

I encountered this error when running `yarn test` in https://serverless-stack.com/chapters/unit-tests-in-serverless.html Solved it by changing the script in package.json to ```json "scripts": { "test": "jest --env=node" }, ```

I see this tutorial is using the serverless-offline package, where is this covered?

I find it quite useful to use TS with the AWS SDK, I was wondering if we should look at doing it here? It works with serverless webpack I believe.

Can you post the schema for the DynamoDB table or add it to serverless.yml please? Looks as if you perhaps have a GSI on `userId` to make it work but...

Hi, I have created a local js file with its dependency getting import in the handler.js as below `import JsonValidator from './src/jsonvalidator'` Now when i run this on local for...