New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

gulp-cordova-create

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-cordova-create

Create a cordova project

latest
Source
npmnpm
Version
2.0.1
Version published
Maintainers
1
Created
Source

gulp-cordova-create

Create a cordova project

Installation

npm install --save-dev gulp-cordova-create

Usage

const create = require('gulp-cordova-create');

gulp.task('build', () => {
    return gulp.src('www')
        .pipe(create());
});

This will generate a Cordova project in the .cordova directory. It will copy the contents of the www directory to the root directory of the Cordova project.

Make sure you html files are located in a directory called www.

Options

You can pass in extra options to change the initial configuration of the project.

const create = require('gulp-cordova-create');

gulp.task('build', () => {
    const options = {
        dir: 'myproject',
        id: 'com.myproject.hello',
        name: 'MyProject'
    };

    return gulp.src('www')
        .pipe(create(options));
});

This will execute the following command

$ cordova create myproject com.myproject.hello MyProject

And then it will copy the content of the www directory to the www directory of the cordova project.

API

create([options])

options

dir

Type: string
Default: .cordova

The name of the output directory.

id

Type: string
Default: io.cordova.hellocordova

The reverse domain-style identifier of the project.

name

Type: string
Default: HelloCordova

The application's display title.

See gulp-cordova for the full list of available packages.

License

MIT © Sam Verschueren

Keywords

gulp

FAQs

Package last updated on 08 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts