InterviewSolution
Saved Bookmarks
| 1. |
What is Ionic CLI ? How do you create a new project using Ionic CLI ? |
|
Answer» CLI means Command Line Interface. Similar to Angular, Ionic CLI comes with a number of helpful commands that let you create a new project, add pages , COMPONENTS, providers , directives , pipes and so on. You NEED the CLI to run, emulate, debug, BUILD and deploy your application. The syntax to create a new ionic project using ionic cli is : ionic start <project name> <template> for e.g. ionic start hello world blank. This would create a new project with blank SCREEN. Optionally you can mention tabs , side MENU, etc. instead of blank as starter template. |
|