I have Node.js server with Socket.IO, which communicate with Python server (Django).
I need to perform POST from the node.js server (on specific method) to the Django server.
I cannot use any jquery function because it require window document.
Any other idea how can i send data to the Django from Node.js with POST method and check if it success?
Thanks.