mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
34 lines
630 B
Plaintext
34 lines
630 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# cordova
|
|
|
|
> Mobile apps with HTML, CSS & JS.
|
|
> More information: <https://cordova.apache.org/docs/en/latest/guide/cli/>.
|
|
|
|
- Create a Cordova project:
|
|
|
|
`cordova create {{path/to/directory}} {{package}} {{project_name}}`
|
|
|
|
- Display the current workspace status:
|
|
|
|
`cordova info`
|
|
|
|
- Add a Cordova platform:
|
|
|
|
`cordova platform add {{platform}}`
|
|
|
|
- Remove a Cordova platform:
|
|
|
|
`cordova platform remove {{platform}}`
|
|
|
|
- Add a Cordova plugin:
|
|
|
|
`cordova plugin add {{pluginid}}`
|
|
|
|
- Remove a Cordova plugin:
|
|
|
|
`cordova plugin remove {{pluginid}}`
|