cordova-create

v6.0.0
  • Types
  • ESM
  • CJS

Apache Cordova create module. Creates new project from default or template

License
Apache-2.0
Install Size
32.2 kB/-
Vulns
0
Published

Get started

$npm install cordova-create
$pnpm add cordova-create
$yarn add cordova-create
$bun add cordova-create
$deno add npm:cordova-create
$vlt install cordova-create

Readme

cordova-create

NPM

Node CI Release Audit 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
}