我正在尝试使用nodejs脚本获取nodejs API请求详细信息,例如请求标头,响应详细信息,响应时间等
request
.post('http://localhost:3000/api/pet')
.send({ name: 'Manny', species: 'cat' })
.set('X-API-Key', 'foobar')
.set('Accept', 'application/json')
.end(function(err, res){
// Calling the end function will send the request
});
我尝试过像node-monitor- https://github.com/shunanya/Node.js-monitoring这样的软件包,但它会返回所有请求的请求详细信息,需要传递服务器详细信息和选项
我正在尝试使用本机节点js函数和模块来获取使用express,hapi,request,http
进行的任何请求的API请求的请求和响应详细信息基本上我试图在节点应用程序发生任何http API请求时触发一个通知脚本