Skip to content

alsotang/simpledownload

Repository files navigation

Node.js CI

Install

npm install simpledownload

Usage

import {simpledownload} from 'simpledownload'
await simpledownload('https://www.google.co.jp/images/srpr/logo11w.png', `${__dirname}/1.jpg`);

simpledownload(url: string, localPath: string, options?: {timeout, agent}): Promise<void>

  • url - the url you wanna download. e.g https://www.google.co.jp/images/srpr/logo11w.png
  • localPath - e.g `${__dirname}/1.jpg`
  • options.timeout - use millisecond. If timeout, err.timeout would exist.
  • options.agent - http.Agent. For example, you can use node-socks-proxy-agent to enable socks5 proxy.

license

MIT

About

A Node.js download package(library)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published