get-file-then-post

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

Usage no npm install needed!

<script type="module">
  import getFileThenPost from 'https://cdn.skypack.dev/get-file-then-post';
</script>

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'