Skip to content

devtobo/cordova-fetch

 
 

Repository files navigation

Build status Build Status NPM

cordova-fetch

This module is used for fetching modules from npm and gitURLs. It fetches the modules via npm install. It can also npm uninstall modules from a project.

Usage:

Fetching:

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

fetch(spec, dest, opts);

spec can be a string containg a npm packageID or a git URL. dest is string of the directory location you wish to npm install these modules. opts is an Object of options cordova fetch handles. Currently, fetch only support the save option. eg. {'save':true}

Removing:

var npmUninstall = require('cordova-fetch').uninstall;

npmUninstall(spec, dest, opts);

spec can be a string containg a npm packageID. dest is string of the directory location you wish to npm uninstall these modules. opts is an Object of options cordova fetch handles. Currently, fetch only support the save option. eg. {'save':true}

About

Mirror of Apache cordova fetch

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%