パッケージの詳細

get-file-then-post

zerrolizen3ISC1.0.4

get arraybuffer file data from specified url and post it to another url

get, post, buffer, bufferarray

readme

Features

  • Redirect file data from one url to another url

Installation

npm i get-file-then-post

Usage

const getFileThenPost = require('get-file-then-post');

getFileThenPost({
    getUrl: "npmjs.com/file.exe",
    postUrl: "npmjs.com/uploadFile",
    fileName: "file.exe"
});

Options

getUrl - url from which the file data gets requested\ Type: String\ Required: true\ \ postUrl - url to which the requested file data (type: arraybuffer) gets postet\ Type: String\ Required: true\ \ fileName - naming with which the file gets postet\ Type: String\ Default: 'file'