我正在尝试通过bitbucket在Azure webapp上部署我的node.js应用。
当我在kudu控制台上检查wwwroot文件夹时,找不到任何node_modules文件夹,因此该应用程序无法启动
我已经在kudu控制台中(在wwwroot文件夹内)尝试了npm install和npm install --production,并且可以看到通过filezilla安装了node_modules和文件。...但是,当我尝试再次启动该应用程序时,node_modules只是消失了,在kudu控制台和filezilla中都看不到它。
项目文件夹中的package.json文件:
{
"name": "fo",
"version": "1.0.0",
"description": "xx xx xx",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "xx xx",
"license": "MIT",
"dependencies": {
"angular-map-it": "0.0.20",
"angular-maps": "^6.0.1",
"angular-waypoints": "^2.0.0",
"axios": "^0.19.0",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.5",
"body-parser": "^1.19.0",
"connect-mongodb-session": "^2.2.0",
"convert-json": "^0.5.0",
"csvtojson": "^2.0.10",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"fixed-width-string": "^1.0.0",
"guid": "0.0.12",
"json2csv": "^4.5.2",
"jsontoxml": "^1.0.1",
"moment": "^2.24.0",
"moment-business-days": "^1.1.3",
"money": "^0.2.0",
"mongoose": "^5.6.4",
"multer": "^1.4.1",
"ng-storage": "^0.3.2",
"node-crisp-api": "^1.8.3",
"nodemailer": "^6.3.0",
"objects-to-csv": "^1.0.1",
"open-exchange-rates": "^0.3.0",
"sanitize": "^2.1.0",
"svg-assets-cache": "^1.1.3"
}
}
我不明白,人们如何使Node.js应用程序在Azure上工作?为什么node_modules消失了?以及为什么azure无法根据我的package.json自动安装它们?
答案 0 :(得分:0)
Azure App Service可以理解package.json和npm-shrinkwrap.json文件,并可以基于这些文件中的条目安装模块。
Azure App Service不支持所有本机模块,并且在编译具有特定先决条件的模块时可能会失败。虽然某些流行的模块(例如MongoDB)具有可选的本机依赖项,并且在没有它们的情况下也可以正常工作,但以下变通方法已证明对于当今几乎所有可用的本机模块都是成功的:
导航到Kudu-https://yoursite.scm.azurewebsites.net/
找到wwwroot文件夹并运行install命令。
cd网站
cd wwwroot
npm安装
在已安装所有本机模块先决条件的Windows机器上运行npm install。然后,将创建的node_modules文件夹作为应用程序的一部分部署到Azure App Service。编译之前,请检查您本地的Node.js安装是否具有匹配的体系结构,并且该版本与Azure中使用的版本尽可能接近(可以在运行时从属性process.arch和process.version中检查当前值)。因此,请确保
Azure App Service可以配置为在部署期间执行自定义bash或shell脚本,从而使您有机会执行自定义命令并精确配置npm安装的运行方式。有关显示如何配置该环境的视频,请参见Custom Website Deployment Scripts with Kudu。请确保所有配置正确。 如果问题仍然存在,请告诉我们您收到了什么具体错误消息(应用无法启动)以进行进一步调查,并查看此“ Best practices and troubleshooting guide for node applications on Azure App Service Windows”以获取有关该主题的更多详细信息。