pipelining
2.2.3 • Public • Published pipelining
Xhr chunked stream client for the browser and NodeJS
HOW TO USE
front-end
const pipelining = require('pipelining');
const reader = pipelining('/test');
function read() {
reader.read().then(partial => {
if (partial.done) {
return;
}
handle(partial.data).then(read);
});
}
read();
back-end
const pipelining = require('pipelining');
function (req, res) {
res.write(pipelining.pack(1));
res.write(pipelining.pack({ tom: 'test' }));
res.end();
}
TODO:
- node.js version
- headers support
Versions
Version | Downloads (Last 7 Days) | Tag |
---|
2.2.3 | 1 | latest |
Version History
Package Sidebar
Install
Weekly Downloads