gpt4 book ai didi

javascript - Node 模块无法导入

转载 作者:行者123 更新时间:2023-12-01 02:11:07 24 4
gpt4 key购买 nike

我在我的项目中使用nodejs第三方模块。我按照 NPM 站点中给出的文档进行操作。但是当我使用 Node 执行js脚本时,它显示错误 Node 模块未找到。

  • 我的 Node 模块 tableau-api我的代码:
  • Alexa 技能的 lambda 函数

    'use strict';
    const Alexa = require("alexa-sdk");
    var tab = require("tableau-api");

    exports.handler = function(event, context, callback) {
    const alexa = Alexa.handler(event, context);
    alexa.registerHandlers(handlers);
    alexa.execute();
    };

    const handlers = {
    'LaunchRequest': function() {
    this.emit('SayHello');
    },
    'HelloWorldIntent': function() {
    this.emit('SayHello');
    }
    };

错误:

"errorMessage": "Cannot find module 'tableau-api'",
"errorType": "Error",
"stackTrace": [
"Function.Module._load (module.js:474:25)",
"Module.require (module.js:596:17)",
"require (internal/module.js:11:18)",
"Object.<anonymous> (/var/task/index.js:3:11)",
"Module._compile (module.js:652:30)",
"Object.Module._extensions..js (module.js:663:10)",
"Module.load (module.js:565:32)",
"tryModuleLoad (module.js:505:12)",
"Function.Module._load (module.js:497:3)"

最佳答案

可能是您没有安装该软件包。

尝试 npm install --save tableau-api

关于javascript - Node 模块无法导入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49767705/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com