1

我正在尝试将机器人分析(https://github.com/Botanalytics/botanalytics-microsoftbotframework-middleware)集成到天蓝色机器人服务中。

但是,由于我对 node.js 非常陌生,我不知道如何在 azure 中使用 npm 安装包。我所做的是将“npm install botanalytics-microsoftbotframework-middleware”输入到 azure cloud shell 中。

但是,当我检查 node_modules 和 package.json(下面的屏幕截图)文件夹时,它没有显示在那里。

这应该是一个相当菜鸟的问题,但我的知识有限,无法解决自己......

谢谢!

在此处输入图像描述

[编辑]

{
  "name": "luisbot",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "dependencies": {
    "botbuilder": "^3.7.0",
    "botbuilder-azure": "3.0.2",
    "botanalytics-microsoftbotframework-middleware": "0.0.1"
  },
  "devDependencies": {
      "restify": "^4.3.0"
  },  
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "",
  "license": "ISC"
}
4

1 回答 1

2

将 NPM 模块名称和版本添加到 package.json 依赖项部分并保存文件。Bot 服务将检测更改并为您运行 npm install。

于 2017-06-23T15:57:39.397 回答