Lambda ENOENT:没有这样的文件或目录

时间:2018-02-28 01:42:03

标签: node.js lambda filepath

我正在尝试在AWS Lambda函数(节点6.10.0)中读取文件.yml。

console.log(__dirname + '/gameOptions.yml');
console.log(path.resolve('./gameOptions.yml'));
console.log(path.resolve('/gameOptions.yml'));
console.log('./gameOptions.yml');
console.log(process.cwd() + '/api/lib/gameOptions.yml');

let doc = yaml.safeLoad(fs.readFileSync(path.resolve('./gameOptions.yml'), 'utf8'));

我已经尝试了所有可能的方法,但总是得到ENOENT: no such file or directory

该文件位于同一文件夹中且为.yml,因此require('')也无效。

上述代码的结果是:

/Users\marcus\Documents\Workspace\proak-api\proak-api\api\lib/gameOptions.yml
/var/task/gameOptions.yml
/gameOptions.yml
./gameOptions.yml
/var/task/api/lib/gameOptions.yml

它在本地工作。

1 个答案:

答案 0 :(得分:1)

要解决这个问题,您需要关注两件事:

<强>优化 如果您正在使用某些东西来缩小代码,例如无服务器-插件-优化:

包含不要缩小的文件。

  myLambda:
    handler: mySubFolder/myLambda.handler
    optimize:
      includePaths: ['mySubFolder/myFile.json']

解决路径。

path.resolve(process.env.LAMBDA_TASK_ROOT, '_optimize', process.env.AWS_LAMBDA_FUNCTION_NAME, 'mySubFolder/myFile.json')

如果你不使用minify,你还需要将.yml文件放入Lambda,编译成函数。

需要 require(&#39; file.yml&#39;)会给您一个错误。所以你让:

var fs = require('fs')
  , yaml = require('js-yaml');

    require.extensions['.yaml'] = 
    require.extensions['.yml'] = function(module, filename) {
      var content = fs.readFileSync(filename, 'utf8');
      // Parse the file content and give to module.exports
      content = yaml.load(content);
      module.exports = content;
    };