【发布时间】:2018-01-17 06:14:24
【问题描述】:
是否可以在亚马逊 AWS lambda 服务器上创建和应用服务器?
喜欢这个 hello world 函数吗?
var http = require('http');
http.createServer(function(request, response) {
response.writeHead(200);
response.write("Hello, this is Eric");
response.end();
}).listen(8080);
我该如何测试呢?并从我的网站调用它?
这个函数的网址是什么?
【问题讨论】:
标签: node.js amazon-web-services aws-lambda