We really do not want to store extra state information across requests, right now we get around this by shoe horning package.json info into a header.
- Problems
We send multiple things at inopportune times if we want to keep to Stateless based HTTP.
We want to:
Multipart/form-data could take care of this but node-formidable is lacking when uploading multiple files at once.
- Stream back relevant information before determining the status code
NPM Logs
- Solution
Unfortunately we need a duplex solution. That means WS://
- Implement a simple multiplexing protocol, nssocket would not work due to the bloat of sending JSON
We really do not want to store extra state information across requests, right now we get around this by shoe horning package.json info into a header.
We send multiple things at inopportune times if we want to keep to Stateless based HTTP.
We want to:
Multipart/form-data could take care of this but node-formidable is lacking when uploading multiple files at once.
NPM Logs
Unfortunately we need a duplex solution. That means WS://