InterviewSolution
Saved Bookmarks
| 1. |
What is the Ionic CLI? How would you create a new project using CLI? |
|
Answer» The official Ionic CLI, or Command-Line-Interface, is a VITAL instrument for Ionic APPLICATION development.
To use Ionic CLI to create a new ionic project, type: ionic start <project name> <template>, for example, new task blank. This will start a new project with a blank canvas. Instead of using blank as a beginning template, you can use tabs, side menus, and other OPTIONS. |
|