如何在Node.js环境中发送以下请求?
curl -s -v -X POST 'http://localhost/pub?id=my_channel_1' -d 'Hello World!'
我正在尝试与Nginx推送流模块一起构建Node.js服务器.
最佳答案
您可能想使用“请求”模块,我正在使用它,对此感到非常满意.
原文链接:https://www.f2er.com/nginx/532227.html如何在Node.js环境中发送以下请求?
curl -s -v -X POST 'http://localhost/pub?id=my_channel_1' -d 'Hello World!'
我正在尝试与Nginx推送流模块一起构建Node.js服务器.