Apache Cordova Fetch Library

Clone this repo:
  1. ee5baf5 release(5.0.0): updated release notes & version (fetch-5.0.0) by Erisu · 5 days ago 5.0.x master 5.0.0
  2. 3562925 ci: workflow updates (#137) by エリス · 10 days ago
  3. a8d9ff4 chore(README): update badges (#136) by エリス · 10 days ago
  4. f7e1680 chore: update & add source code license headers (#135) by エリス · 11 days ago
  5. 0502014 chore(npm)!: bump cordova-common@6.0.0 (#131) by エリス · 11 days 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