如何在 NodeJS Azure Functions 中使用包管理? [英] How can i use package management in NodeJS Azure Functions?

查看:14
本文介绍了如何在 NodeJS Azure Functions 中使用包管理?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将此示例项目构建为 Azure 函数,它需要一些包 https://github.com/OfficeDev/O365-Nodejs-Microsoft-Graph-App-only

I'm trying to build this sample project as a Azure Function and it requires some packages https://github.com/OfficeDev/O365-Nodejs-Microsoft-Graph-App-only

我可以看到我可以使用 https://azure.microsoft.com/en-us/documentation/articles/functions-reference/#nodejavascript-api

I can see that I can use packet management in NodeJS Azure Functions using https://azure.microsoft.com/en-us/documentation/articles/functions-reference/#nodejavascript-api

我试过用这个

var request = require('request');

此声明

You can include packages in your function directory (i.e. via npm install) and then import them to your function in the usual ways (i.e. via require('packagename'))

所以我在其中创建了一个 project.json,就像 C# Azure 函数使用的一样:

So I created a project.json with this in it like the C# Azure Function uses:

{
  "frameworks": {
    "net46":{
      "dependencies": {
        "chalk": "^1.1.1",
        "q": "^1.4.1",
        "request": "^2.67.0"
      }
    }
  }
}

得到这个错误

2016-04-06T19:49:42.026 Exception while executing function: Functions.MicrosoftGraphWebHookNode. mscorlib: One or more errors occurred. Error: Cannot find module 'request'
    at Function.Module._resolveFilename (module.js:339:15)
    at Function.Module._load (module.js:290:25)
    at Module.require (module.js:367:17)
    at require (internal/module.js:16:19)
    at Object.<anonymous> (D:homesitewwwrootMicrosoftGraphWebHookNodeindex.js:1:77)
    at Module._compile (module.js:413:34)
    at Object.Module._extensions..js (module.js:422:10)
    at Module.load (module.js:357:32)
    at Function.Module._load (module.js:314:12)
    at Module.require (module.js:367:17).

project.json 应该工作吗?

Should the project.json work?

推荐答案

你可以在你的函数目录中包含你的 package.json 并像往常一样运行 npm install使用 Kudu 或 Azure 门户中的控制台处理 Node.js 项目.

You can include your package.json in you function directory and run npm install as you normally would with Node.js projects using Kudu or the Console in the Azure portal.

更多信息可以在这里找到:https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference-node?tabs=v2#dependency-management

More information can be found here: https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference-node?tabs=v2#dependency-management

这篇关于如何在 NodeJS Azure Functions 中使用包管理?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆