Repositorio del curso CCOM4030 el semestre B91 del proyecto Artesanías con el Instituto de Cultura
lyxaira.glass 74ca844f42 Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
..
CONTRIBUTING.md Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
LICENSE Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
NOTICE Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
README.md Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
RELEASENOTES.md Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
index.js Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans
package.json Actualizacion cambios generados: seccion #12, #14 y #15. il y a 4 ans

README.md

cordova-create

NPM

Node CI codecov.io

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

Usage

const create = require('cordova-create');
await create(dest, opts);

Parameters

dest

Required. Path to the destination where the project will be created. Must be an empty dir if it exists.

opts

Optional. Supports following properties.

{
    // Attributes to be set in package.json & config.xml
    id: String,
    name: String,
    version: String,

    // The path/url/package-name to the template that should be used
    template: String,

    // An EventEmitter instance that will be used for logging purposes
    // (actually it only needs to implement a compatible `emit` method)
    events: EventEmitter
}