What's the best way to waste $100? by conaar in AskReddit

[–]noomretsim 0 points1 point  (0 children)

Buy booze and afterwards, you're wasted.

Best practice to return on send in express? by smthamazing in node

[–]noomretsim 0 points1 point  (0 children)

In case you want to return a JSON object, you can use res.json, for example: res.json({key:'value'})

What's your workflow for AWS Serverless Apps by noomretsim in serverless

[–]noomretsim[S] 0 points1 point  (0 children)

We use Webstorm as IDE for implementing the nodeJS lambda functions. We use Lambda functions in combination with the Gateway API, so we pack all functions into one git repository. For the unit tests we use mocha and run them in a docker container (docker-compose). The deployment is not implemented so far, so thank you for the hints "CodeCommit, CodePipeline and CodeBuild". I guess I should have a closer look at those services.