博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cordova CLI命令行工具
阅读量:6323 次
发布时间:2019-06-22

本文共 1996 字,大约阅读时间需要 6 分钟。

Cordova CLI用于构建、部署和管理基于Cordova应用的命令行工具。

 Cordova CLI要求的环境需求:

  • nodejs
  • 各个平台相应的SDK支持

安装Cordova

  $ npm  install  -g  cordova

用法:

先用全局级命令来创建项目工程:

create <directory> [<id> [<name>]]

其中可带参数id是指定包名,一般形如域名倒写的风格

然后在创建好的项目中,使用工程项目级的命令来配置编译、运行项目:

  • platform [ls | list] list all platforms the project will build to
  • platform add <platform> [<platform> ...] add one (or more) platforms as a build target for the project
  • platform [rm | remove] <platform> [<platform> ...] removes one (or more) platforms as a build target for the project
  • plugin [ls | list] list all plugins added to the project
  • plugin add <path-to-plugin> [<path-to-plugin> ...] add one (or more) plugins to the project
  • plugin [rm | remove] <plugin-name> [<plugin-name> ...] remove one (or more) added plugins
  • prepare [platform...] copies files into the specified platforms, or all platforms. it is then ready for building by Eclipse/Xcode/etc.
  • compile [platform...] compiles the app into a binary for each added platform. With no parameters, builds for all platforms, otherwise builds for the specified platforms.
  • build [<platform> [<platform> [...]]] an alias for cordova prepare followed by cordova compile
  • emulate [<platform> [<platform> [...]]] launch emulators and deploy app to them. With no parameters emulates for all platforms added to the project, otherwise emulates for the specified platforms
  • serve <platform> [port] launch a local web server for that platform's www directory on the given port (default 8000).

其它标识

  • -d or --verbose will pipe out more verbose output to your shell. You can also subscribe to log andwarn events if you are consuming cordova-cli as a node module by callingcordova.on('log', function() {}) or cordova.on('warn', function() {}).
  • -v or --version will print out the version of your cordova-cli install.

用Cordova CLI创建的工程项目的目录结构(以myApp项目为例)

myApp/|--.cordova/|-- merges/| | |-- android/| | |-- blackberry10/| | `-- ios/|-- www/| `-- config.xml|-- platforms/| |-- android/| |-- blackberry10/| `-- ios/`-- plugins/

 

转载地址:http://onlaa.baihongyu.com/

你可能感兴趣的文章
linux系统性能分析
查看>>
SystemTap----将SystemTap脚本编译成内核模块
查看>>
KVM虚拟机介绍
查看>>
构建ASP.NET MVC4+EF5+EasyUI+Unity2.x注入的后台管理系统(7)-MVC与EasyUI DataGrid
查看>>
Redis系列(六)-SortedSets设计技巧
查看>>
Latex技巧
查看>>
Android开发日记(一)
查看>>
java中简单字符替换
查看>>
【推荐】【给中高级开发者】构建高性能ASP.NET应用的几点建议
查看>>
js学习笔记2---HTML属性操作
查看>>
青岛旅游
查看>>
用 Fabric 实现自动化部署
查看>>
windows raid mode重新安装系统(win10)
查看>>
PHPCMS列表页伪静态
查看>>
【LeetCode-面试算法经典-Java实现】【05-Longest Palindromic Substring(最大回文字符串)】...
查看>>
基于Vue开发的tab切换组件
查看>>
使用Sphinx编写文档
查看>>
求二叉树的深度和宽度
查看>>
北上广深安防智能交通行业公司!
查看>>
概率图模型(PGM)学习笔记(三)模式判断与概率图流
查看>>