I’m trying do something like below for HTTP 301 redirect, so that web users will redirect to different news pages. However, seems like this request.origin.domainName == “mydomain.com” part is not working in my function. Is this correct way to pick the domain name which client coming from? I …
Tag: aws-lambda
Uncaught exception in AWS lambda javascript
I am trying to elicit an intent from Amazon LEX through lambda but I was given an error calling uncaught exception. Would appreciate the help, my code is as follows: Answer The “uncaught exception” error usually means that a response is not being provided for the specific type of input. In your ca…
How to send signed HTTP request from AWS Lambda to AppSync GraphQL?
I am not sure how to send signed http request do AppSync GraphQL endpoint. There is no library for do that in AWS. aws-amplify don’t work because works only in browser, not in Lambda function. aws-sdk for AppSync is only for admin usage, it doesn’t have methods for call user side api It is possibl…
Change Woocommerce API functions to async/await using NodeJS in AWS Lambda
I am looking to change a couple of Woocommerce API calls so each function finishes before the next functions proceeds. However, I am unsure how to do this without breaking the specific Node Woocommerce API code. https://woocommerce.github.io/woocommerce-rest-api-docs/?javascript#create-an-order-note How can I…
Remove currency symbol from string and convert to a number using a single line in Javascript
I have a string below that is a price in £, I want to remove the currency symbol and then convert this into a number/price I can use to compare against another value (eg. X >= Y …) £14.50 I have previously converted strings to numbers used for currency with var priceNum = parseFloat(price); IDEAL OUT…
How to automatically zip files with Node.js and npm
Is there a way to automatically zip certain files at the build time with Node.js and npm? For example, I have a project, that file structure looks like this: I want to be able to zip lib folder, certain modules from node_modules and index.js into some zip archive to upload it on the AWS Lambda, for example. I…