|
Answer» You can download the Framework7 in two ways:
Download from Framework7 Github REPOSITORY You can install the Framework7 by using Bower as shown below:
bower install framework7: After successful installation of Framework7, you need to follow the below steps to make USE of Framework7 in your application:
Step 1: You need to install gulp-cli to build development and dist versions of Framework7 by using the below command: NPM install gulp-cli The cli stands for Command Line Utility for Gulp. Step 2: The Gulp MUST be installed globally by using the below command: npm install --global gulp Step 3: Next, install the NodeJS package manager which INSTALLS the node programs that makes easier to specify and link dependencies. The below command is used to install the npm: npm install Step 4: The development version of Framework7 can be build by using the below command: npm build Step 5: Once you build the development version of Framework7, start building app from dist/ folder by using the following command: npm dist Step 6: Keep your app folder in the server and run the following command for navigation between pages of your app. gulp server You can download the Framework7 in two ways: Download from Framework7 Github repository You can install the Framework7 by using Bower as shown below: bower install framework7: After successful installation of Framework7, you need to follow the below steps to make use of Framework7 in your application: Step 1: You need to install gulp-cli to build development and dist versions of Framework7 by using the below command: npm install gulp-cli The cli stands for Command Line Utility for Gulp. Step 2: The Gulp must be installed globally by using the below command: npm install --global gulp Step 3: Next, install the NodeJS package manager which installs the node programs that makes easier to specify and link dependencies. The below command is used to install the npm: npm install Step 4: The development version of Framework7 can be build by using the below command: npm build Step 5: Once you build the development version of Framework7, start building app from dist/ folder by using the following command: npm dist Step 6: Keep your app folder in the server and run the following command for navigation between pages of your app. gulp server
|