All Projects β†’ apache β†’ Cordova App Hello World

apache / Cordova App Hello World

Licence: apache-2.0
Apache Cordova Template App

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Cordova App Hello World

Generator Ngx Rocket
πŸš€ Extensible Angular 11+ enterprise-grade project generator
Stars: ✭ 1,329 (+681.76%)
Mutual labels:  hacktoberfest, mobile, cordova
Cordova Docs
Apache Cordova Documentation
Stars: ✭ 315 (+85.29%)
Mutual labels:  hacktoberfest, mobile, cordova
Cordova Lib
Apache Cordova Tooling Library
Stars: ✭ 208 (+22.35%)
Mutual labels:  hacktoberfest, mobile, cordova
Cordova Js
Apache Cordova JavaScript Bridge
Stars: ✭ 598 (+251.76%)
Mutual labels:  hacktoberfest, mobile, cordova
Cordova Android
Apache Cordova Android
Stars: ✭ 3,285 (+1832.35%)
Mutual labels:  hacktoberfest, mobile, cordova
Cordova Ios
Apache Cordova iOS
Stars: ✭ 2,031 (+1094.71%)
Mutual labels:  hacktoberfest, mobile, cordova
Flutter Mvvm Provider Demo
Stars: ✭ 89 (-47.65%)
Mutual labels:  hacktoberfest, mobile
Ionic Collection
🀘 Looking for about Ionic Framework?
Stars: ✭ 101 (-40.59%)
Mutual labels:  mobile, cordova
Corona
Solar2D Game Engine main repository (ex Corona SDK)
Stars: ✭ 1,679 (+887.65%)
Mutual labels:  hacktoberfest, mobile
Components
MobileUI was created thinking of making your hybrid application faster and smaller since you only install what you are really going to use for UI.
Stars: ✭ 125 (-26.47%)
Mutual labels:  mobile, cordova
Vue Storefront
The open-source frontend for any eCommerce. Built with a PWA and headless approach, using a modern JS stack. We have custom integrations with Magento, commercetools, Shopware and Shopify and total coverage is just a matter of time. The API approach also allows you to merge VSF with any third-party tool like CMS, payment gateways or analytics. Ne…
Stars: ✭ 9,111 (+5259.41%)
Mutual labels:  hacktoberfest, mobile
Cordova Plugin Vibration
Apache Cordova Plugin vibration
Stars: ✭ 109 (-35.88%)
Mutual labels:  mobile, cordova
Cordova Node Xcode
Apache cordova
Stars: ✭ 128 (-24.71%)
Mutual labels:  mobile, cordova
Framework7 Template Vue Simple
Deprecated! Simple Framework7 Vue starter app template in a single HTML file
Stars: ✭ 81 (-52.35%)
Mutual labels:  mobile, cordova
Framework7 Cli
Framework7 command line utility
Stars: ✭ 76 (-55.29%)
Mutual labels:  mobile, cordova
Cordova Plugin Test Framework
Apache Cordova
Stars: ✭ 66 (-61.18%)
Mutual labels:  mobile, cordova
Presently
Android app for recording gratitude journal entries
Stars: ✭ 109 (-35.88%)
Mutual labels:  hacktoberfest, mobile
Cordova Plugin Globalization
Apache Cordova Plugin globalization
Stars: ✭ 131 (-22.94%)
Mutual labels:  mobile, cordova
Involt
Inject hardware interactions directly into HTML layout.
Stars: ✭ 128 (-24.71%)
Mutual labels:  mobile, cordova
Cordova Browser
Apache Cordova
Stars: ✭ 142 (-16.47%)
Mutual labels:  mobile, cordova

Apache Cordova Hello World Application

NPM

A simple Hello World application that serves two purposes:

  • It is used as the default app template when creating new projects
  • It is a reference for building and publishing custom Cordova Templates

Structure of your template

template_package
β”œβ”€β”€ package.json (for your template package to be published on npm)
β”œβ”€β”€ index.js
└── template_src (contains template files)
    β”œβ”€β”€ package.json
    β”œβ”€β”€ config.xml
    └── (files and folders that make up the template)

Outside of template_src

All files outside of template_src are used to define parameters about the template. These files are not copied over at creation, so feel free to add a README or any other files outside of template_src.

index.js

index.js points to where the template exists. You'll see that index.js usually looks like:

const path = require('path');

module.exports = {
    dirname : path.join(__dirname, 'template_src')
};

package.json

This package.json holds information about the template itself like its name, version etc. All templates should contain the keyword "cordova:template" so that the template is searchable on npm. For example:

{
    "name": "cordova-example-template",
    "version": "1.0.0",
    "...": "...",
    "keywords": [
        "cordova:template"
    ]
}

Inside of template_src

All files inside of template_src compose the template from which a user would desire in order to create their project. Everything in this folder is copied over to the created project.

The package.json in template_src should be filled with information that describes the project that would be created from the template.

If you want to include .gitignore files in your template, you have to name them gitignore (without a leading dot) instead. They will be renamed to .gitignore upon template expansion.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].