pack-util-http-file
v0.0.2
Published
Pack HTTP File Util
Readme
pack-util-http-file
Pack HTTP File Util
Installation
$ npm install pack-util-http-fileUsage
upload('/api/upload-file', fileInput.files[0], res => {
console.log('Success!');
}, err => {
console.log('Failed!');
});download('/api/download-file', 'filename.txt', res => {
console.log('Success!');
}, err => {
console.log('Failed!');
});Note: This is only really meant for plain text files, it might work with other stuff but don't expect it to.
