New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

partial-load

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

partial-load

Download part of a file

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

partial-load

Download part of a file.

Installation

$ yarn add partial-load

# Or,

$ npm install partial-load --save

Usage

const partialDownload = require('partial-load')

const url = 'https://www.w3schools.com/html/mov_bbb.webm'
const megabyte = 1024 * 1024

// stop loading once 1MB has been exceeded
partialDownload(url, './output/file.webm', megabyte)
  .then((bytes) => console.log('Downloaded ', bytes, ' bytes!'))

API

partialLoad(url, output, byteLimit)

Returns of a Promise which resolves to the number of loaded bytes.

url

Type: String

The url of the file.

output

Type: String

The file path of the output, assumes directory exists.

byteLimit

Type: Number

The byte limit threshold; the load will stop once the byte limit has been exceeded.

Keywords

download

FAQs

Package last updated on 20 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts