如何模拟HTTP响应以测试应用程序? 我想做的是模拟HTTP响应以测试HTTP node.js客户端.有什么东西可以像fakeweb一样用于node.js吗? 为什么不使用node.js服务器?它们写起来很简单,可以让你完
我想做的是模拟HTTP响应以测试HTTP node.js客户端.有什么东西可以像fakeweb一样用于node.js吗?
为什么不使用node.js服务器?它们写起来很简单,可以让你完全控制响应.这是一个例子,直接从http://nodejs.org/开始
var http = require('http'); http.createServer(function (req, res) { res.writeHead(200, {'Content-Type': 'text/plain'}); res.end('Hello World\n'); }).listen(8124, "127.0.0.1"); console.log('Server running at http://127.0.0.1:8124/');