Apache Cordova Fetch Library

Clone this repo:
  1. bb5168b chore(ci): Fix Windows CI tests (#158) by Darryl Pogue · 6 days ago master
  2. 09ffdca chore(INFRA): Set up default protection ruleset for default and release branches (#156) by The Apache Software Foundation · 4 weeks ago
  3. c6a0202 chore(deps): bump brace-expansion from 5.0.5 to 5.0.6 (#157) by dependabot[bot] · 4 weeks ago
  4. 38716d9 chore(deps): bump ip-address from 10.0.1 to 10.2.0 (#155) by dependabot[bot] · 6 weeks ago
  5. c079333 chore(deps): bump lodash from 4.17.23 to 4.18.1 (#153) by dependabot[bot] · 10 weeks ago

cordova-fetch

NPM

Node CI Release Audit codecov.io

This package can be used to install and uninstall Node.js packages using npm.

Usage

fetch

Installs a module from:

  • npm registry
  • git url
  • tarball
    • url
    • file on local file system
  • folder path on local system

Returns a Promise resolving to the absolute path of the installed package.

const fetch = require('cordova-fetch');

fetch(spec, dest, opts).then(pathToInstalledPackage => {
    // Do something
});

Fetch Parameters

ParameterDescription
specA spec for the package to be installed (anything supported by npm install)
destLocation where to install the package
optsAdditional options (optional)
Fetch Options
OptionDefaultDescription
savefalseAdds the package as dependency to package.json iff true

uninstall

Uninstalls a package from the given directory. Returns a Promise that resolves when removal has finished.

const { uninstall } = require('cordova-fetch');

uninstall(packageName, dest, opts).then(() => {
    // Do something
});

Uninstall Parameters

ParameterDescription
packageNameName of the package to be uninstalled
destLocation from where to uninstall the package
optsAn Object with additional options
Uninstall Options
OptionDefaultDescription
savefalseRemoves dependency from package.json iff true