JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1064
  • Score
    100M100P100Q109288F
  • License MIT

wget in Node, with Promise support

Package Exports

  • node-wget-promise

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-wget-promise) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

node-wget-promise

node-wget-promise simplifies retrieving files from any URL, with Promise support.

npm Build Status styled with prettier

This package is forked and enhanced from wget-improved

Installation

npm install node-wget-promise --save

Usage

The simpliest example

const wget = require('node-wget-promise');

wget('http://nodejs.org/images/logo.svg');

The basic example with callbacks

const wget = require('node-wget-promise');

wget([url], {
    onStart: [Callback],
    onProgress: [Callback],
    output: [outputFilePath]
  })
  .then(metadata => [fileMetadata])
  .catch(err => [Error]);

Work with async-await syntax

const wget = require('node-wget-promise');

(async () => {
  await wget([url]);
  console.log('Done');
})();