我正在尝试将机器人分析(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"
}