View on GitHub

NodeJS Notes

Compilation of NodeJS Notes

Using fs Library in Lambda

Visitors

Documenting the issues I faced while using fs library in lambda

Here I have considered below template as reference for all my use cases below, // Your Code Here is the part that I will be referring to here on forward

const fs = require('fs');
const fsp = require('fs').promises;
exports.handler = async (event) => {

    // Your Code Here

    const response = {
        statusCode: 200,
        body: JSON.stringify('Hello from Lambda!'),
    };
    return response;
};

Reading any file in lambda

So What’s The Difference? readFileSync() is synchronous and blocks execution until finished. These return their results as return values. readFile() are asynchronous and return immediately (mostly undefined) while they function in the background. You pass a callback function which gets called when they finish.

Reference

Visitors