Stuck on Need a faster logging experience when using serverless-stack with serverless-esbuild

Open
#248 3 comments 2 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
4/5
Estimated time
3-5 days
Newbie friendliness
35/100
Issue type
Bug
Clarity
Needs clarification
Activity status
Stale
Tech stack
aws, node.js, typescript
Domain
backend, cloud

Research direction

Start with the serverless.yml reproduction and run serverless deploy using the listed serverless-esbuild and serverless-localstack plugins. Trace why deployment reaches LocalStack but the process remains at the displayed logging message; done means the deployment completes and the command exits normally.

Written by the indexing model from the issue text.

Description

status: backlog

After running serverless deploy, the lambda is indeed deployed to LocalStack but the process is still running and stuck on:

Need a faster logging experience than CloudWatch? Try our Dev Mode in Console: run "serverless dev"

How to reproduce:

serverless.yml

service: serverless-localstack

frameworkVersion: "3"

provider:
  name: aws
  runtime: nodejs18.x

plugins:
  - serverless-esbuild
  - serverless-localstack

functions:
  hello:
    handler: handler.hello

handler.ts

export const hello = async (event) => {
  return {
    statusCode: 200,
    body: JSON.stringify({
      message: "Go Serverless",
      input: event,
    }),
  };
};

Dominant language
JavaScript
Stars
542
Forks
92
PR merge metrics
No merged PRs in 30d

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from localstack/serverless-localstack

All issues in localstack/serverless-localstack

Similar issues

More JavaScript issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.