tree: c5ac89170cbbdcd8dd258cf03ba7123310cbf719 [path history] [tgz]
  1. .github/
  2. spec/
  3. .gitignore
  4. .npmignore
  5. .ratignore
  6. .travis.yml
  7. appveyor.yml
  8. index.js
  9. LICENSE
  10. package.json
  11. README.md
  12. RELEASENOTES.md
README.md

Build status Build Status

cordova-create

This module is used for creating cordova style projects. It also incudes support for cordova templates. It can fetch templates from npm and git.

Usage:

:

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

create(dir, id, name, cfg, extEvents);

dir - directory where the project will be created. Required. id - app id. Required (but can be “undefined”). name - app name. Required (but can be “undefined”). cfg - extra config to be saved in .cordova/config.json Required (but can be “{}”). extEvents - An EventEmitter instance that will be used for logging purposes. Required (but can be “undefined”).

An example of cfg which would fetch a cordova template from npm (or git):

var cfg = {
    lib: {
        www: {
            template: true,
            url: 'cordova-app-hello-world',
            version: ''
        }
    }
};