Victor Leung
Victor Leung
BlogAI SolutionAlphaAlgoFlower shopFX CombineIEESushi ClassifierWealth Agile

Import npm modules to AWS lambda function

April 11, 2020

When you create a node.js lambda function on Amazon Web Service (AWS), and start editing using the online editor, then you want to **npm install **and import a third party library, such as lodash, unfortunately there is no simple way to do it via the web portal.

In order to do it, you need to write your code in local environment and deploy it. First, create a folder in your machine and copy the index.js file inside it. Then run the below command to init and install your dependency:

    npm init .
    npm install lodash --save

Import your libary to the index.js, such as

    let _ = require('lodash');

After you finish writing your code, zip the entire folder including those node_modules via this command:

    zip -r function.zip .

Finally, deploy the zip file using AWS CLI tools in terminal:

    aws lambda update-function-code --function-name yourFunctionName --zip-file fileb://function.zip

Replace yourFunctionName placeholder with your function name. If it's deploy ok, you should see "LastUpdateStatus": "Successful" and you can continue the testing in the console.


About Victor Leung

Software development professional with expertise in application architecture, cloud solutions deployment, and financial products development. Possess a Master's degree in Computer Science and an MBA in Finance. Highly skilled in AWS (Certified Solutions Architect, Developer and SysOps Administrator), GCP (Professional Cloud Architect), Microsoft Azure, Kubernetes(CKA, CKAD, CKS, KCNA), and Scrum(PSM, PSPO) methodologies.

Happy to connect
LinkedIn
Github
Twitter
@victorleungtw

Continuous improvement

Copyright © victorleungtw.com 2023.