All Projects → framework7io → Framework7 Cli

framework7io / Framework7 Cli

Licence: mit
Framework7 command line utility

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Framework7 Cli

Framework7 Template Vue Simple
Deprecated! Simple Framework7 Vue starter app template in a single HTML file
Stars: ✭ 81 (+6.58%)
Mutual labels:  framework7, phonegap, mobile, app, cordova
Framework7 Plugin 3d Panels
Framework7 plugin to add 3d effect for side panels
Stars: ✭ 56 (-26.32%)
Mutual labels:  framework7, mobile, cordova
framework7-template-split-view
Deprecated! Framework7 split view starter app template
Stars: ✭ 19 (-75%)
Mutual labels:  cordova, phonegap, framework7
phonegap-template-vue-f7-tabs
A TabBar PhoneGap template using Vue.js and Framework7
Stars: ✭ 31 (-59.21%)
Mutual labels:  cordova, phonegap, framework7
Involt
Inject hardware interactions directly into HTML layout.
Stars: ✭ 128 (+68.42%)
Mutual labels:  phonegap, mobile, cordova
phonegap-template-vue-f7-split-panel
A Split View PhoneGap template using Vue.js and Framework7 that degrades to a Panel View on smaller devices
Stars: ✭ 17 (-77.63%)
Mutual labels:  cordova, phonegap, framework7
Framework7 Template Vue Webpack
Deprecated! Framework7 Vue Webpack starter app template with hot-reload & css extraction
Stars: ✭ 399 (+425%)
Mutual labels:  framework7, mobile, app
Carpoolear
The open source Vue.js frontend (mobile and cordova app) for the argentinian carpooling application: Carpoolear
Stars: ✭ 59 (-22.37%)
Mutual labels:  mobile, app, cordova
Awesome Cordova
📱 A curated list of amazingly awesome Cordova libraries, resources and shiny things.
Stars: ✭ 269 (+253.95%)
Mutual labels:  framework7, phonegap, cordova
framework7-template-single-view
Deprecated! Framework7 single view starter app template
Stars: ✭ 34 (-55.26%)
Mutual labels:  cordova, phonegap, framework7
Framework7
Full featured HTML framework for building iOS & Android apps
Stars: ✭ 16,560 (+21689.47%)
Mutual labels:  phonegap, mobile, cordova
Hiapp
A simple and interesting hybrid app. React Native version: http://t.cn/R5LqqLz Demo:
Stars: ✭ 791 (+940.79%)
Mutual labels:  framework7, phonegap, cordova
Fixmystreet Mobile
Cordova application for making reports to FixMyStreet
Stars: ✭ 40 (-47.37%)
Mutual labels:  mobile, cordova
Rntimerexample
📱 React Native + Mobx sample app
Stars: ✭ 40 (-47.37%)
Mutual labels:  mobile, app
Snipit
Snipit allows you to capture and save interesting sections from any source of information. Be it textbooks, journals, computer screens, photographs, flyers, writings on a whiteboard, etc.
Stars: ✭ 70 (-7.89%)
Mutual labels:  mobile, app
Blinkid Cordova
ID scanning for cross-platform apps built with Cordova and Phonegap.
Stars: ✭ 44 (-42.11%)
Mutual labels:  phonegap, cordova
Aurelia
Aurelia 2, a standards-based, front-end framework designed for high-performing, ambitious applications.
Stars: ✭ 995 (+1209.21%)
Mutual labels:  mobile, cordova
Cordova Firefoxos
[DEPRECATED] Apache Cordova firefoxos
Stars: ✭ 41 (-46.05%)
Mutual labels:  mobile, cordova
Cordova App Harness
[DEPRECATED] Apache Cordova app harness
Stars: ✭ 49 (-35.53%)
Mutual labels:  mobile, cordova
Nat Explorer
An example project using Nat & Weex.
Stars: ✭ 55 (-27.63%)
Mutual labels:  mobile, app

Framework7 CLI

Framework7 command line utility makes easier to create Framework7 apps. Since Framework7 v4 release, CLI the most recommended way to start Framework7 app development.

Install

First of all make sure you have globally installed cordova (may require "sudo"):

$ npm install -g cordova

Then install framework7-cli (may require "sudo"):

$ npm install -g framework7-cli

Create Framework7 app

To create Framework7 app, run the following command in the directory where you want to create app:

$ framework7 create

Program will prompt for few questions about framework and template you want to start with.

Create Framework7 app with user interface

Run the following command in the directory where you want to create app:

$ framework7 create --ui

It will launch UI where you will be able to configure the project. By default it launches server on localhost:3001 address. If you want to change the port then use --port <n> argument:

$ framework7 create --ui --port 8080

Generate assets

In created project there is an assets-src directory. It contains required icons and splash screens source images. To generate your own icons and splash screen images, you will need to replace all assets in this directory with your own images (pay attention to image size and format), and run the following command in the project directory:

$ framework7 assets

That is all, script will generate all required sizes of icons and splash screens and place them automatically where they need to be.

Generate assets with user interface

Run the following command in the directory with Framework7 project:

$ framework7 assets --ui

It will launch UI where you will be able to change icons and splash screens. By default it launches server on localhost:3001 address. If you want to change the port then use --port <n> argument:

$ framework7 assets --ui --port 8080

Cordova APIs

To run cordova related commands run the following command in the project root directory:

$ framework7 cordova [..args]

For example:

$ framework7 cordova plugin add cordova-plugin-statusbar
$ framework7 cordova plugin add cordova-plugin-splashscreen
$ framework7 cordova build ios
...
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].