我尝试将此示例项目构建为Azure功能,并且需要一些软件包https://github.com/OfficeDev/O365-Nodejs-Microsoft-Graph-App-only
我可以看到我可以使用https://azure.microsoft.com/en-us/documentation/articles/functions-reference/#nodejavascript-api
在NodeJS Azure Functions中使用数据包管理我试着用这个
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 Function使用:
{
"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:\home\site\wwwroot\MicrosoftGraphWebHookNode\index.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应该有效吗?
答案 0 :(得分:26)
您可以将package.json
包含在您的功能目录中,并像使用Kudu或Azure门户中的控制台一样运行Node.js项目时运行npm install
。
答案 1 :(得分:-1)
我做了类似的事情,而SMTP无需使用SendGrid就可以工作。 下面是我的azure函数代码。
const nodemailer = require('nodemailer');
module.exports = async function (context, myTimer) {
let transport = nodemailer.createTransport({
host: '',
port: 2525,
auth: {
user: '',
pass: ''
}
});
const message = {
from: '', // Sender address
to: '', // List of recipients
subject: '', // Subject line
text: '' // Plain text body
};
transport.sendMail(message, function(err, info) {
if (err) {
console.log(err)
} else {
console.log(info);
}
});
};