Serverless offline not getting route
问题 I have a serverless project that I just newly initialized: severless.yml : service: lambda provider: name: aws runtime: nodejs8.10 region: us-east-1 functions: hello: handler: handler.hello events: - http: path: /hello method: GET plugins: - serverless-offline And I run it with sls offline --port 8080 : Serverless: Starting Offline: dev/us-east-1 Serverless: Routes for hello: Serverless: GET /hello Serverless: Offline listening on http://localhost:8080 and in my handler.ts module.exports