{"id":9889,"date":"2023-03-13T22:28:46","date_gmt":"2023-03-13T14:28:46","guid":{"rendered":"http:\/\/123.57.164.21\/?p=9889"},"modified":"2023-04-12T08:10:34","modified_gmt":"2023-04-12T00:10:34","slug":"lambda-layer-tips","status":"publish","type":"post","link":"https:\/\/92it.top\/?p=9889","title":{"rendered":"Lambda Layer Tips"},"content":{"rendered":"\n<p><strong>1.\u5229\u7528 esbuild \u7f16\u8bd1 typeScript \u5230javascript(\u6709\u4f9d\u8d56)<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>\u6211\u4eec\u53ef\u4ee5\u4f7f\u7528typeScript\u6765\u5f00\u53d1Lambda\u51fd\u6570\u3002\u4f46\u662flambda\u672c\u8eab\u8fd0\u884c\u4e0d\u4e86typeScript\uff0c\u9700\u8981\u6211\u4eec\u901a\u8fc7esbulid\uff0c\u5148build\u6210Javascript\uff0c\u6211\u4eec\u4e0b\u9762\u7684\u4f8b\u5b50\u4f1a\u628a\u4f9d\u8d56\u7684\u4ee3\u7801\uff0c\u90fd\u6253\u5165\u5230<strong>javascript<\/strong>\u4e2d\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-66.png\" alt=\"\" class=\"wp-image-9903\" width=\"407\" height=\"334\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-66.png 650w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-66-300x246.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-66-230x189.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-66-350x288.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-66-480x394.png 480w\" sizes=\"(max-width: 407px) 100vw, 407px\" \/><\/figure><\/div>\n\n\n\n<p>\u4e0b\u9762\u662ftypeScript\u7684\u4f8b\u5b50\uff1a<\/p>\n\n\n\n<p>lambda.ts<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-1024x418.png\" alt=\"\" class=\"wp-image-9890\" width=\"536\" height=\"218\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-1024x418.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-300x123.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-768x314.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-1536x627.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-830x339.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-230x94.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-350x143.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55-480x196.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-55.png 1552w\" sizes=\"(max-width: 536px) 100vw, 536px\" \/><\/figure><\/div>\n\n\n\n<p>package.json<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n  \"name\": \"aws-lambda-layer\",\n  \"version\": \"1.0.0\",\n  \"description\": \"aws lambda layer demo\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"build\": \"esbuild lambda.ts --bundle --minify --sourcemap --platform=node --target=es2020 --format=esm --outfile=dist\/index.mjs\",\n    \"postbuild\": \"cd dist &amp;&amp; zip -r index.zip index.mjs*\"\n  },\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"dependencies\": {\n    \"@types\/aws-lambda\": \"^8.10.109\",\n    \"esbuild\": \"^0.15.16\",\n    \"lambda-local\": \"^2.0.3\",\n    \"aws-sdk\": \"^2.1279.0\",\n    \"class-transformer\": \"^0.5.1\",\n    \"mongodb\": \"^4.12.1\",\n    \"axios\": \"^1.2.0\"\n  }\n\n}<\/pre>\n\n\n\n<p>\u6ce8\u610f &#8220;scripts&#8221; \u91cc\u9762\u7684\u53c2\u6570<\/p>\n\n\n\n<p>&#8211;bundle\uff1a\u4f1a\u628a dependencies\u76f8\u5173\u7684\u4f9d\u8d56\u5305\u90fd\u6253\u8fdbbuild\u597d\u7684javascript\u91cc\u9762\u3002<\/p>\n\n\n\n<p>\u5728 esbuild \u4e2d\uff0c<code>bundle<\/code> \u662f\u4e00\u4e2a\u6784\u5efa\u9009\u9879\uff0c\u7528\u4e8e\u6307\u793a esbuild \u6253\u5305\u6240\u6709\u4ee3\u7801\u5e76\u8f93\u51fa\u4e00\u4e2a\u6346\u7ed1\u540e\u7684\u6587\u4ef6\u3002\u5177\u4f53\u6765\u8bf4\uff0c\u5b83\u5c06\u7f16\u8bd1\u5668\u7684\u5de5\u4f5c\u548c\u6a21\u5757\u52a0\u8f7d\u5668\u7684\u5de5\u4f5c\u7ed3\u5408\u8d77\u6765\uff0c\u4f7f\u5f97\u5728\u6d4f\u89c8\u5668\u6216 Node.js \u4e2d\u76f4\u63a5\u52a0\u8f7d\u751f\u6210\u7684\u6587\u4ef6\u65f6\uff0c\u53ef\u4ee5\u65e0\u9700\u518d\u53bb\u52a0\u8f7d\u5176\u4ed6\u6a21\u5757\u6216\u811a\u672c\u6587\u4ef6\uff0c\u8fd9\u4e2a\u6253\u5305\u540e\u7684 <code>bundle.js<\/code> \u6587\u4ef6\u5305\u542b\u4e86\u6240\u6709\u76f8\u5173\u7684\u4ee3\u7801\u3002<\/p>\n\n\n\n<p>&#8211;sourcemap\uff1a\u4f1a\u751f\u6210map\u6620\u5c04\u6587\u4ef6<\/p>\n\n\n\n<p>\u5728\u7ec8\u7aef\u6267\u884c\uff1anpm run build<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-1024x376.png\" alt=\"\" class=\"wp-image-9891\" width=\"491\" height=\"180\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-1024x376.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-300x110.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-768x282.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-830x305.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-230x85.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-350x129.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56-480x176.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-56.png 1366w\" sizes=\"(max-width: 491px) 100vw, 491px\" \/><\/figure><\/div>\n\n\n\n<p>\u53ef\u4ee5\u770b\u5230\u5728dist\u76ee\u5f55\u4e0b\uff0c\u751f\u6210\u4e86mjs \u548c map \u4ee5\u53cazip\u5305\u3002\u53ef\u4ee5\u770b\u5230mjs size\u67099.2MB\uff0c\u8fd9\u662f\u56e0\u4e3a\u628a\u4f9d\u8d56\u5305\u90fd\u6253\u8fdb\u53bb\u4e86\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-1024x282.png\" alt=\"\" class=\"wp-image-9892\" width=\"607\" height=\"167\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-1024x282.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-300x83.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-768x212.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-1536x423.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-830x229.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-230x63.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-350x96.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57-480x132.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-57.png 1568w\" sizes=\"(max-width: 607px) 100vw, 607px\" \/><\/figure><\/div>\n\n\n\n<p>\u53e6\u5916 &#8211;minify \u8fd9\u4e2a\u53c2\u6570\u4f1a\u538b\u7f29\u4ee3\u7801\uff0c\u628a\u4ee3\u7801\u53d8\u6210\u4e00\u884c\u3002<\/p>\n\n\n\n<p>\u53bb\u6389 &#8211;minify \u53c2\u6570\u4ee5\u540e\u7684build\u51fa\u7684 index.mjs<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-118-1024x593.png\" alt=\"\" class=\"wp-image-10620\" width=\"493\" height=\"285\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-1024x593.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-300x174.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-768x444.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-830x480.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-230x133.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-350x203.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118-480x278.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-118.png 1410w\" sizes=\"(max-width: 493px) 100vw, 493px\" \/><\/figure><\/div>\n\n\n\n<p>\u6709 &#8211;minify \u53c2\u6570 build\u51fa\u7684 index.mjs<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-119-1024x206.png\" alt=\"\" class=\"wp-image-10622\" width=\"530\" height=\"106\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-1024x206.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-300x60.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-768x154.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-1536x309.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-830x167.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-230x46.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-350x70.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119-480x96.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-119.png 1582w\" sizes=\"(max-width: 530px) 100vw, 530px\" \/><\/figure><\/div>\n\n\n\n<p><strong>\u91cd\u8981<\/strong><\/p>\n\n\n\n<p>\u52a0\u4e86 &#8211;bundle\u53c2\u6570\u4ee5\u540e\uff0clambda\u6267\u884c\u603b\u4f1a\u51fa\u8fd9\u4e2a\u9519\u8bef\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-121-1024x463.png\" alt=\"\" class=\"wp-image-10630\" width=\"471\" height=\"212\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-1024x463.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-300x136.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-768x348.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-830x376.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-230x104.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-350x158.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121-480x217.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-121.png 1118w\" sizes=\"(max-width: 471px) 100vw, 471px\" \/><figcaption>lambda\u6267\u884c\u7ed3\u679c<\/figcaption><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-120.png\" alt=\"\" class=\"wp-image-10629\" width=\"456\" height=\"251\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120.png 938w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120-300x165.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120-768x422.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120-830x457.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120-230x127.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120-350x193.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-120-480x264.png 480w\" sizes=\"(max-width: 456px) 100vw, 456px\" \/><figcaption>build\u51fa\u7684index.mjs\u6587\u4ef6<\/figcaption><\/figure><\/div>\n\n\n\n<p>\u52a0\u4e0a <strong><span class=\"has-inline-color has-vivid-red-color\">&#8211;format=esm<\/span><\/strong> \u80fd\u89e3\u51b3\u8fd9\u4e2a\u95ee\u9898\uff0c\u4e0d\u77e5\u9053\u539f\u56e0<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">esbuild src\/service\/test.ts --bundle --external:axios --external:aws-sdk --external:mongodb --external:class-transformer --external:@aws-sdk\/client-secrets-manager --external:zip --platform=node --target=es2020 --format=esm --outfile=dist\/index.mjs\",\n<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-122-1024x586.png\" alt=\"\" class=\"wp-image-10631\" width=\"398\" height=\"227\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-1024x586.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-300x172.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-768x439.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-830x475.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-230x132.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-350x200.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122-480x275.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-122.png 1234w\" sizes=\"(max-width: 398px) 100vw, 398px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-123-1024x757.png\" alt=\"\" class=\"wp-image-10632\" width=\"399\" height=\"294\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-1024x757.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-300x222.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-768x568.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-830x613.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-230x170.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-350x259.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123-480x355.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-123.png 1410w\" sizes=\"(max-width: 399px) 100vw, 399px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-124-1024x545.png\" alt=\"\" class=\"wp-image-10633\" width=\"429\" height=\"228\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-1024x545.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-300x160.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-768x409.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-830x441.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-230x122.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-350x186.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124-480x255.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-124.png 1316w\" sizes=\"(max-width: 429px) 100vw, 429px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-125-1024x261.png\" alt=\"\" class=\"wp-image-10634\" width=\"467\" height=\"119\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-1024x261.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-300x76.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-768x196.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-830x211.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-230x59.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-350x89.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125-480x122.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-125.png 1194w\" sizes=\"(max-width: 467px) 100vw, 467px\" \/><\/figure><\/div>\n\n\n\n<p>\u4e00\u4e2a\u5b8c\u6574\u7684\u4f8b\u5b50<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">esbuild src\/service\/test.ts --bundle --external:axios --external:aws-sdk --external:mongodb --external:class-transformer --external:@aws-sdk\/client-secrets-manager --external:zip --platform=node --target=es2020 --format=esm --outfile=dist\/index.mjs<\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>2.\u5229\u7528 esbuild \u7f16\u8bd1 typeScript \u5230javascript(\u65e0\u4f9d\u8d56)<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p><strong>\u65b9\u6cd5\u4e00\uff1a\u53bb\u6389&#8211;bundle <\/strong><\/p>\n\n\n\n<p>\u4e0a\u9762\u90a3\u79cd\u60c5\u51b5\uff0c\u53ef\u4ee5\u770b\u5230\u628a\u4f9d\u8d56\u90fd\u6253\u5230<strong>javascript<\/strong>\u4e2d\u4e86\uff0c\u6240\u4ee5size\u5f88\u5927\u3002\u6211\u4eec\u6709\u65f6\u5019\u53ea\u60f3\u7f16\u8bd1\u6587\u4ef6\uff0c\u4e0d\u60f3\u628a\u4f9d\u8d56\u6253\u8fdb\u53bb\u3002\u7136\u540e\u6211\u4eec\u7684\u4f9d\u8d56\u662f\u901a\u8fc7layer\u5c42\u505a\u51fa\u6765\u3002\u6211\u4eec\u7684<strong>javascript<\/strong> \u76f4\u63a5\u5173\u8054lambda layer\u5c42\uff0c\u5f15\u7528lambda layer\u5c42\u7684\u4f9d\u8d56\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-65.png\" alt=\"\" class=\"wp-image-9902\" width=\"383\" height=\"306\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-65.png 760w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-65-300x240.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-65-230x184.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-65-350x280.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-65-480x384.png 480w\" sizes=\"(max-width: 383px) 100vw, 383px\" \/><\/figure><\/div>\n\n\n\n<p>\u53ef\u4ee5\u4fee\u6539\u4e0bpackage.json\u7684build\u7684\u547d\u4ee4<\/p>\n\n\n\n<p>\u4fee\u6539\u540e\u7684package.json<\/p>\n\n\n\n<p>build \u91cc\u9762 \u53bb\u6389\u4e86 &#8211;bundle \u548c &#8211;sourcemap<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n  \"name\": \"aws-lambda-layer\",\n  \"version\": \"1.0.0\",\n  \"description\": \"aws lambda layer demo\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"build\": \"esbuild lambda.ts --minify --platform=node --target=es2020  --format=esm --outfile=dist\/index.mjs\",\n    \"postbuild\": \"cd dist &amp;&amp; zip -r index.zip index.mjs*\"\n  },\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"dependencies\": {\n    \"@types\/aws-lambda\": \"^8.10.109\",\n    \"esbuild\": \"^0.15.16\",\n    \"lambda-local\": \"^2.0.3\",\n    \"aws-sdk\": \"^2.1279.0\",\n    \"class-transformer\": \"^0.5.1\",\n    \"mongodb\": \"^4.12.1\",\n    \"axios\": \"^1.2.0\"\n  }\n\n}<\/pre>\n\n\n\n<p>\u518d\u6b21npm run build\uff0c\u53ef\u4ee5\u770b\u5230index.mjs \u53d8\u6210313kb\u4e86\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-1024x241.png\" alt=\"\" class=\"wp-image-9907\" width=\"463\" height=\"108\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-1024x241.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-300x71.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-768x181.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-1536x361.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-830x195.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-230x54.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-350x82.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68-480x113.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-68.png 1574w\" sizes=\"(max-width: 463px) 100vw, 463px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-1024x369.png\" alt=\"\" class=\"wp-image-9894\" width=\"470\" height=\"169\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-1024x369.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-300x108.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-768x276.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-1536x553.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-830x299.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-230x83.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-350x126.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58-480x173.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-58.png 1778w\" sizes=\"(max-width: 470px) 100vw, 470px\" \/><\/figure><\/div>\n\n\n\n<p>\u4f46\u662f\u65b9\u6cd5\u4e00\u6709\u4e2a\u95ee\u9898\uff0c\u5047\u5982\u8981build\u7684ts\u6587\u4ef6\uff0c\u91cc\u9762\u5f15\u7528\u4e86\u522b\u7684moudle\uff0cCommonUtil\uff0c\u5982\u679c\u53bb\u6389\u4e86 &#8211;bundle\uff0c\u5219CommonUtil\u4e5f\u4e0d\u4f1a\u6253\u8fdb\u7f16\u8bd1\u597d\u7684index.mjs\u4ee3\u7801\u91cc\u9762\u4e86\u3002\u8fd9\u4e2a\u65f6\u5019\u6211\u4eec\u53ef\u4ee5\u7528\u4e0b\u9762\u7684\u65b9\u6cd5\u4e8c\uff0c\u901a\u8fc7<code>external<\/code>\u53c2\u6570\u5177\u4f53\u6307\u5b9a\u9664\u5916\u7684\u6a21\u5757\uff0c\u53ef\u4ee5\u7cbe\u786e\u7684\u9664\u5916\u67d0\u4e2amoudle\uff0c\u4fdd\u7559\u4e0d\u60f3\u9664\u5916\u7684moudle\u3002<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/04\/image-117-1024x567.png\" alt=\"\" class=\"wp-image-10618\" width=\"473\" height=\"262\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-1024x567.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-300x166.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-768x425.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-830x459.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-230x127.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-350x194.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117-480x266.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/04\/image-117.png 1066w\" sizes=\"(max-width: 473px) 100vw, 473px\" \/><\/figure><\/div>\n\n\n\n<p><strong>\u65b9\u6cd5\u4e8c\uff1a<\/strong><\/p>\n\n\n\n<p>\u5728\u4f7f\u7528 <code>esbuild<\/code> \u6784\u5efa Node.js \u5e94\u7528\u65f6\uff0c\u53ef\u4ee5\u901a\u8fc7\u8bbe\u7f6e <code>external<\/code> \u9009\u9879\u6765\u544a\u8bc9 <code>esbuild<\/code> \u54ea\u4e9b\u6a21\u5757\u662f\u5916\u90e8\u4f9d\u8d56\uff0c\u4e0d\u5e94\u8be5\u88ab\u6253\u5305\u8fdb\u6700\u7ec8\u7684\u8f93\u51fa\u6587\u4ef6\u4e2d\u3002\u8fd9\u6837\u53ef\u4ee5\u51cf\u5c0f\u8f93\u51fa\u6587\u4ef6\u7684\u5927\u5c0f\uff0c\u5e76\u4e14\u53ef\u4ee5\u907f\u514d\u4e00\u4e9b\u4e0d\u5fc5\u8981\u7684\u91cd\u590d\u4ee3\u7801\u3002<\/p>\n\n\n\n<p>\u4f60\u53ef\u4ee5\u5c06\u4ee5\u4e0b\u7684 <code>build<\/code> \u547d\u4ee4\u6dfb\u52a0\u5230\u4f60\u7684 <code>package.json<\/code> \u6587\u4ef6\u4e2d\u7684 <code>scripts<\/code> \u5b57\u6bb5\u4e2d\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n  \"name\": \"my-app\",\n  \"version\": \"1.0.0\",\n  \"scripts\": {\n    \"build\": \"esbuild index.js --bundle --external:fs --external:path --external:moduleA --platform=node --format=esm --outfile=dist\/bundle.js\"\n  },\n  \"dependencies\": {\n    \/\/ ...\n  }\n}\n<\/pre>\n\n\n\n<p>\u5728\u4e0a\u9762\u7684 <code>build<\/code> \u547d\u4ee4\u4e2d\uff0c\u6211\u4eec\u4f7f\u7528\u4e86 <code>--external<\/code> \u9009\u9879\u6765\u5c06 <code>fs<\/code>\u3001<code>path<\/code> \u548c <code>module<\/code>A \u6a21\u5757\u8bbe\u7f6e\u4e3a\u5916\u90e8\u4f9d\u8d56\u3002\u5982\u679c\u4f60\u7684\u5e94\u7528\u7a0b\u5e8f\u4f7f\u7528\u4e86\u5176\u4ed6\u6a21\u5757\uff0c\u53ef\u4ee5\u6839\u636e\u9700\u8981\u6dfb\u52a0\u5230 <code>--external<\/code> \u9009\u9879\u4e2d\u3002<\/p>\n\n\n\n<p><strong>3.\u5236\u4f5clambda layer<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>\u5148\u5728\u672c\u5730\u505a\u597dlayer\u5c42\u7528\u5230\u7684nodejs modules\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">npm install mongodb\nnpm install aws-sdk\nnpm install axios<\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-1024x455.png\" alt=\"\" class=\"wp-image-9896\" width=\"537\" height=\"239\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-1024x455.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-300x133.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-768x341.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-1536x683.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-830x369.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-230x102.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-350x156.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60-480x213.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-60.png 1858w\" sizes=\"(max-width: 537px) 100vw, 537px\" \/><\/figure><\/div>\n\n\n\n<p>\u628anode_modules\uff0c package.json\uff0cpackage-lock.json\u4e00\u8d77\u6253\u6210\u538b\u7f29\u5305\uff0c\u5e76\u4e14\u547d\u540d\u6210nodejs.zip<\/p>\n\n\n\n<p>\u901a\u8fc7lambda\u63a7\u5236\u53f0\u521b\u5efalayer\uff0c\u5e76\u4e14\u4e0a\u4f20nodejs.zip<\/p>\n\n\n\n<p><strong>4.lambda\u51fd\u6570\u5f15\u7528\u8be5layer\u5c42<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-1024x718.png\" alt=\"\" class=\"wp-image-9904\" width=\"545\" height=\"381\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-1024x718.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-300x210.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-768x538.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-830x582.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-230x161.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-350x245.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67-480x336.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-67.png 1150w\" sizes=\"(max-width: 545px) 100vw, 545px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-1024x445.png\" alt=\"\" class=\"wp-image-9897\" width=\"598\" height=\"260\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-1024x445.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-300x130.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-768x334.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-1536x668.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-830x361.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-230x100.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-350x152.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61-480x209.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-61.png 1780w\" sizes=\"(max-width: 598px) 100vw, 598px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-1024x569.png\" alt=\"\" class=\"wp-image-9898\" width=\"571\" height=\"316\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-1024x569.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-300x167.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-768x427.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-1536x854.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-830x461.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-230x128.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-350x195.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62-480x267.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-62.png 1576w\" sizes=\"(max-width: 571px) 100vw, 571px\" \/><\/figure><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-1024x502.png\" alt=\"\" class=\"wp-image-9900\" width=\"585\" height=\"286\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-1024x502.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-300x147.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-768x377.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-1536x754.png 1536w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-830x407.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-230x113.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-350x172.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64-480x235.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/\u56fe\u7247-64.png 1594w\" sizes=\"(max-width: 585px) 100vw, 585px\" \/><\/figure><\/div>\n\n\n\n<p><strong>5.\u6587\u4ef6\u5236\u4f5clayer\u5c42<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>\u6709\u65f6\u5019\uff0c\u6211\u4eec\u5e0c\u671b\u628a\u4e00\u4e9b\u8bc1\u660e\u6587\u4ef6\uff0c\u666e\u901a\u6587\u4ef6\u7b49\u7b49\uff0c\u505a\u5230layer\u5c42\u91cc\u9762\uff0c\u4ee5\u4f9blamda\u51fd\u6570\u5f15\u7528\uff0c\u53ef\u4ee5\u8fd9\u6837\u505a\u3002<\/p>\n\n\n\n<p>\u6bd4\u5982\u4e0b\u9762\u7684\u4f8b\u5b50\uff0c\u6211\u4eec\u5e0c\u671b\u8fde\u63a5\u628amongodb\u7528\u5230\u7684pem\u6587\u4ef6\u6253\u5230laryer\u5c42\u91cc\u9762\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">pem\n  |---lib\n       |---rds-combined-ca-bundle.pem\n      <\/pre>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/image-134.png\" alt=\"\" class=\"wp-image-9966\" width=\"277\" height=\"119\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-134.png 602w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-134-300x129.png 300w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-134-230x99.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-134-350x150.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-134-480x206.png 480w\" sizes=\"(max-width: 277px) 100vw, 277px\" \/><\/figure><\/div>\n\n\n\n<p>\u7136\u540e\u6253\u6210pem.zip\u538b\u7f29\u5305\uff0c\u5728layer\u505a\u6210\u7684\u63a7\u5236\u53f0\u6b63\u5e38\u4e0a\u4f20zip\u6587\u4ef6\uff0c\u505a\u6210\u5c31\u53ef\u4ee5\u4e86<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"http:\/\/123.57.164.21\/wp-content\/uploads\/2023\/03\/image-135-1024x1020.png\" alt=\"\" class=\"wp-image-9967\" width=\"462\" height=\"459\" srcset=\"https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-1024x1020.png 1024w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-150x150.png 150w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-768x765.png 768w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-830x827.png 830w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-230x229.png 230w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-350x349.png 350w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135-480x478.png 480w, https:\/\/92it.top\/wp-content\/uploads\/2023\/03\/image-135.png 1536w\" sizes=\"(max-width: 462px) 100vw, 462px\" \/><\/figure><\/div>\n\n\n\n<p>\u5728lambda\u51fd\u6570\u91cc\u9762\uff0c\u6b63\u5e38\u5f15\u7528\u8fd9\u4e2alayer\u5c42\u3002<\/p>\n\n\n\n<p>\u8fd9\u6837\u8fd9\u4e2a\u6587\u4ef6\u4f1a\u653e\u5728lamda\u51fd\u6570\uff0c\u4e0b\u9762\u7684\u8def\u5f84\u4e0b\u9762\u3002<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/opt\/lib\/rds-combined-ca-bundle.pem<\/pre>\n\n\n\n<p>lamda\u51fd\u6570\u7684\u4f8b\u5b50\uff1a<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">import { MongoClient } from 'mongodb';\nimport { Axios } from 'axios';\nimport AWS from 'aws-sdk';\nimport * as fs from 'fs';\n\nimport {\n    SecretsManagerClient,\n    GetSecretValueCommand,\n  } from \"@aws-sdk\/client-secrets-manager\";\n\nconst secret_name = \"secrets-docdb-01\";\n\n\/\/ This will persist DB connectionn if Lambda container still \"warm\" on invocation, see: https:\/\/docs.aws.amazon.com\/lambda\/latest\nconst cachedDb: Map&lt;string, MongoClient> = new Map();\n\nconst client = new SecretsManagerClient({\n  region: \"ap-northeast-1\",\n});\n\nexport const handler = async (event) => {\n\n  \/\/ \u8fd9\u5757\u901a\u8fc7fs\u6253\u5370\u4e00\u4e0b\/opt\/lib\u76ee\u5f55\u4e0b\u9762\u7684\u6587\u4ef6\n  let filenames = fs.readdirSync(\"\/opt\/lib\");\n  console.log(\"\\nFilenames in directory:\");\n  filenames.forEach((file) => {\n    console.log(\"File:\", file);\n  });\n    \n    let response;\n    \/\/ \u4eceAWS Secret\u91cc\u9762\u53d6\u5f97documentdb\u7684\u7528\u6237\u540d\u548c\u5bc6\u7801\n    try {\n        response = await client.send(\n          new GetSecretValueCommand({\n            SecretId: secret_name,\n            VersionStage: \"AWSCURRENT\", \/\/ VersionStage defaults to AWSCURRENT if unspecified\n          })\n        );\n      } catch (error) {\n        throw error;\n      }\n      \n    const secret = response.SecretString;\n    const parsedResult = JSON.parse(secret);\n    console.log(parsedResult.username);\n\n    const uri= 'mongodb:\/\/'+ parsedResult.username + ':' + parsedResult.password+ '@xxxxx.ap-northeast-1.docdb.amazonaws.com:27017';\n\n    \/\/ DB\u63a5\u7d9a\u53d6\u5f97\n    let conn = await connectToDatabase(uri);\n    \/\/ Config Mongo Client'\n    console.log(\"conn\");\n    const db = conn.db('accomDocDb02'); \/\/ which DB\n    console.log(db);\n\n    const collection = db.collection('lambdatest'); \/\/ Which \"collection\"\/table     \n    \/\/ Write to DB\n    const dbWrite = await collection.insertOne({ 'lambdatestMsg': 'test' });\n\n    console.log(dbWrite);\n\n    console.log('******lambda tets start******');\n    console.log(event);\n    console.log('Axios:' + Axios.toString);\n    console.log('MongoClient:' + MongoClient.name);\n    console.log('S3:' + AWS.S3.toString);\n    console.log('******lambda test end******');\n};\n\nasync function connectToDatabase(uri) {\n\n    console.log(\"=> connect to database\");\n    if (!cachedDb.has(uri)) {\n        console.log(\"=> creating connection...\");\n        \/\/ \u6ce8\u610f\u8fd9\u91cc\u9762pem\u7684\u8bc1\u4e66\uff0c\u662f\u4ecelayer\u5c42\u8def\u5f84\u6765\u7684\n        const connection = await MongoClient.connect(uri, { ssl: true, sslCA: '\/opt\/lib\/rds-combined-ca-bundle.pem', retrywrites: false }).then(c => c);\n        cachedDb.set(uri, connection);\n        console.log(\"=> connection created...\");\n    }\n    return cachedDb.get(uri) ?? null;\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>1.\u5229\u7528 esbuild \u7f16\u8bd1 typeScript \u5230javascript(\u6709\u4f9d\u8d56) \u6211\u4eec\u53ef\u4ee5\u4f7f\u7528typeS [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,9],"tags":[],"_links":{"self":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/9889"}],"collection":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=9889"}],"version-history":[{"count":16,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/9889\/revisions"}],"predecessor-version":[{"id":10637,"href":"https:\/\/92it.top\/index.php?rest_route=\/wp\/v2\/posts\/9889\/revisions\/10637"}],"wp:attachment":[{"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=9889"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=9889"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/92it.top\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=9889"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}